Top "Uialertview" questions

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

Customize UIAlertController in iOS 8 to include standard elements like UITableView

I am used to customize UIAlertViews through the [alert setValue:someView forKey:@"accessoryView"] method. This creates customizable content for UIAlertViews …

customization ios8 uialertview uialertcontroller
Make UIAlertView Button trigger function On Press

Currently I am using the following code to present a UIAlertView: UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Today's Entry Complete" message:@"…

iphone objective-c xcode uialertview
Alternative to UIAlertView for iOS 9?

UAlertView is deprecated in iOS 9 and later. What would be an alternative? UIAlertView *new = [[UIAlertView alloc] initWithTitle:@"Success" message:@"Your …

ios objective-c ios9 uialertview uialertcontroller
Simple App Delegate method to show an UIAlertController (in Swift)

In obj-C when another iOS app (mail attachment, web link) was tapped with a file or link associated with my …

ios objective-c swift uialertview
How can I show alertview with activity indicator?

I want to show alertview with message: "Loading data" and spinning activity indicator. How can I do this?

ios iphone uialertview uiactivityindicatorview
Add image to alert view

I have an alert view that pops up when the user press the add button. How do i add an …

ios swift uiimage uialertview uialertcontroller
iOS UIAlertView button to go to Setting App

Is there a way to have the button of a UIAlertView go to the Settings App for the specific App …

ios uialertview settings.bundle
Display UIAlertController from UIView/NSObject class

I have working iOS application In order to support iOS8, I am replacing UIAlertView/UIActionSheet with UIAlertController. Problem : For display …

objective-c uialertview ios8 uiactionsheet uialertcontroller
Dismissing UIAlertViews when entering background state

Apple recommends dismissing any UIAlertViews/UIActionSheets when entering background state in iOS 4. This is to avoid any confusion on the …

ios ios4 background uialertview uiactionsheet