ESTimePicker 0.4.3

ESTimePicker 0.4.3

TestsTested
LangLanguage Obj-CObjective C
License BSD
ReleasedLast Release Dec 2014

Maintained by Bas van Kuijck.




  • By
  • Bas van Kuijck

A custom time picker just like the Google Calendar Android App

Example


Example

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.