Top "Uialertview" questions

UIAlertView, a class contained in Apple's UIKit framework, was used to display an alert to the user.

Create UIActionSheet 'otherButtons' by passing in array, not varlist

I have an array of strings that I want to use for button titles on a UIActionSheet. Unfortunately, the otherButtonTitles: …

ios iphone uialertview uiactionsheet
dismissing a UIAlertView programmatically

I need help on dismissing a UIAlertView programmatically. Currently I have this UIAlertView *alert1 = [[UIAlertView alloc]initWithTitle:@"title" message:@"message" …

iphone objective-c uialertview
How can I dismiss UIAlertView?

How can I dismiss UIAlertView ? This code doesn't work. @property (nonatomic, retain) UIAlertView *activityAlertView; - (void)viewDidLoad { self.activityAlertView = [[UIAlertView …

iphone uialertview
Getting text from UIAlertView

I'm trying to get text from an alert view and add it to my mutable array to list in a …

iphone objective-c uialertview
How can I schedule local notification for the following scenario?

Experts, I have a scenario wherein I need to notify user three times a day (morning, afternoon, evening). And the …

ios uialertview uilocalnotification
Using UIActionSheet on iPad

Apple's documentation for the UIActionSheet is causing me confusion. First off, in the iPad Human Interface Guidelines, it says : To …

objective-c ipad uialertview uipopovercontroller uiactionsheet
Multiple UIAlertView; each with their own buttons and actions

Im creating a view in Xcode 4.3 and im unsure how to specify multiple UIAlertView's that have their own buttons with …

xcode button uialertview ibaction
Swift: Insert Alert Box with Text Input (and Store Text Input )

In one of my viewController, I want to make an alert box appear that prompts the user to type this …

swift uialertview nsuserdefaults
Is it possible to NOT dismiss a UIAlertView

The UIAlertviewDelegate protocol has several optional methods including: - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex; This would seem to …

iphone cocoa-touch uialertview
How to make a multiple line, left-aligned UIAlertView?

I am interested in making a left-aligned UIAlertView with several lines like a bulletin list that would look like the …

ios objective-c sdk uialertview