Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
UIPasscodeField - iPhone Development Wiki

UIPasscodeField

From iPhone Development Wiki
Revision as of 19:21, 28 October 2009 by KennyTM~ (talk | contribs) (Created page with 'UIPasscodeField is a segmented group of text fields for entering fixed-length passcode. This is similar to the SpringBoard passcode entry. All appearance settings must be d…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

UIPasscodeField is a segmented group of text fields for entering fixed-length passcode. This is similar to the SpringBoard passcode entry.

All appearance settings must be done only once, because frame is being overdrawn.

UIPasscodeField's delegate

Delegates of UIPasscodeField must conform to the following informal protocol:

@protocol UIPasscodeFieldDelegate
@optional
-(void)passcodeFieldDidAcceptEntry:(UIPasscodeField*)field;
-(BOOL)passcodeField:(UIPasscodeField*)field shouldInsertText:(NSString*)text;
-(void)passcodeFieldTextDidChange:(UIPasscodeField*)field;
@end

References