-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.m
More file actions
25 lines (22 loc) · 871 Bytes
/
main.m
File metadata and controls
25 lines (22 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
//
// initiated by Jason Lam (cofounder @WaveSpread) on 8/28/11.
// Copyright 2012 keyboards.hk
//
// Initiators/root branches
// iOS code: https://github.com/jasonlamkk/iOSNumPadDoneButton/
// Concept and Graphic Reference : 2008/2009 Neoos GmbH
// http://www.neoos.ch/blog/37-uikeyboardtypenumberpad-and-the-missing-return-key
// Major Update :
// - support multiple textfields in same page, each of different type
// - support dynamic done button text by using empty button background image and textlable
// Contributors:
// https://github.com/jasonlamkk/iOSNumPadDoneButton/contributors
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}