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 difference)

Revision as of 19:21, 28 October 2009

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