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
UIAlertView - iPhone Development Wiki

UIAlertView

From iPhone Development Wiki
Revision as of 11:59, 6 November 2009 by KennyTM~ (talk | contribs) (Created page with 'UIAlertView is a class to display alert messages on screen. == Showing with Undo dialog animation == {{function signature |signature=-(void)showWithAnimationType:(int)type;…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

UIAlertView is a class to display alert messages on screen.

Showing with Undo dialog animation

Signature -(void)showWithAnimationType:(int)type;
Available in 3.0 –

Unlike all other dialogs which pops up, the Undo dialog appears by jiggling in from the side. You can do so with [alert showWithAnimationType:1].

Adding text fields

Signature -(UIAlertSheetTextField*)addTextFieldWithValue:(NSString*)defaultText label:(NSString*)promptText;
Available in 2.0 –
Signature -(UIAlertSheetTextField*)textFieldAtIndex:(NSInteger)index;
Available in 2.0 –
Signature -(UIAlertSheetTextField*)textField;
Available in 2.0 –
Signature -(NSInteger)textFieldCount;
Available in 2.0 –

You can create multiple text fields using the -addTextFieldWithValue:label: method. If you only need 1 text field, using the -textField method will automatically create only 1 for you. When the alert view has text fields, it will only be available in portrait position.

References