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: Difference between revisions - iPhone Development Wiki

UIPasscodeField: Difference between revisions

From iPhone Development Wiki
m (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…')
 
No edit summary
 
Line 1: Line 1:
[[UIPasscodeField]] is a segmented group of text fields for entering fixed-length passcode. This is similar to the SpringBoard passcode entry.  
[[UIPasscodeField]] is a segmented group of text fields for entering fixed-length passcode. This is similar to the SpringBoard passcode entry and is in fact used there.  


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

Latest revision as of 19:49, 24 January 2010

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

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