Skip to content

e-sites/ESTimePicker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ESTimePicker

Platform Version

A custom time picker just like the Google Calendar Android App

Example


![Example](https://raw.github.com/e-sites/ESTimePicker/master/Assets/example.gif)

Features

  • Works both in ARC as in MRC
  • Choose your own colors (background, highlight, selection, text)
  • Choose your own font
  • Both 24 hour notation and AM/PM
  • Snap the minute view
  • Completelly usable in your own viewcontroller or view

Installation

Use cocoapods:

pod 'ESTimePicker'

And then import the desired .h file:

#import "ESTimePicker.h"

Implementation

- (void)viewDidLoad
{
   	ESTimePicker *timePicker = [[ESTimePicker alloc] initWithDelegate:self]; // Delegate is optional
   	[timePicker setFrame:CGRectMake(10, 100, 300, 300)];
   	[self.view addSubview:timePicker];
}
	
- (void)timePickerHoursChanged:(ESTimePicker *)timePicker toHours:(int)hours
{
   	[hoursLabel setText:[NSString stringWithFormat:@"%i", hours]];
}

- (void)timePickerMinutesChanged:(ESTimePicker *)timePicker toMinutes:(int)minutes
{
   	[minutesLabel setText:[NSString stringWithFormat:@"%i", minutes]];
}

Documentation

The official documentation can be found here.

Dependencies

This class uses the ESMathUtils class (which is included)

License

Copyright (C) 2014 e-sites, http://e-sites.nl/. Licensed under the BSD license.

About

A custom time picker just like the Google Calendar Android App

Resources

License

Stars

Watchers

Forks

Packages

No packages published