Adds Done and Cancel buttons to an iPhone Number Pad
Add the include, delegate, and textfield to your header file
#import "DoneCancelNumberPadToolbar.h"
@interface ViewController : UIViewController <DoneCancelNumberPadToolbarDelegate>
@property (weak, nonatomic) IBOutlet UITextField *inputExampleTextField;
Attach the DoneCancelNumberPadToolbar to the textfield
- (void)viewDidLoad
{
[super viewDidLoad];
DoneCancelNumberPadToolbar *toolbar = [[DoneCancelNumberPadToolbar alloc] initWithTextField:inputExampleTextField];
toolbar.delegate = self;
inputExampleTextField.inputAccessoryView = toolbar;
}
Use the delegate methods as needed
-(void)doneCancelNumberPadToolbarDelegate:(DoneCancelNumberPadToolbar *)controller didClickDone:(UITextField *)textField
{
NSLog(@"%@", textField.text);
}
-(void)doneCancelNumberPadToolbarDelegate:(DoneCancelNumberPadToolbar *)controller didClickCancel:(UITextField *)textField
{
NSLog(@"Canceled: %@", [textField description]);
}
http://timbroder.com/2012/08/adding-done-and-cancel-buttons-to-an-ios-number-pad.html