UIAlertView, a class part of Apple's UIKit framework, is used to display an alert to the user. The alert can have a title, message, several buttons, and custom subviews.

learn more… | top users | synonyms

0
votes
1answer
23 views

How to use AHAlertView in iphone project?

I have been trying to use AHALertView in my iphone project but it does not work.Even if i run the sample project of AHAlertView, it does not compile and shows as much as 13 errors saying 'undeclared ...
4
votes
4answers
71 views

UIAlert View when no button press count 10seconds and do something [duplicate]

In my UIAlertView I have two buttons Yes, No. If I press Yes do something and if I press No cancel the UIAlertView so I can do this but my problem is that If I don't press any button it counts 10 ...
1
vote
3answers
48 views

UIAlertView and UIActionSheet buttonClicked - EXC_BAD_ACCESS

I've received two crash reports on Crashlytics, with similar logs, one for an UIAlertView and one for an UIActionSheet: Exception Type: EXC_BAD_ACCESS Code: KERN_INVALID_ADDRESS at 0xa0000008 0 ...
-1
votes
5answers
63 views

UIAlertView inside UIAlertView

I am new to iOS programming and I have a question regarding UIAlertViews as the topic suggests. I have a button to delete records in a SQLite DB. This buttons calls a UIAlertview to give the user a ...
0
votes
0answers
15 views

How do I trigger an alert using an if statement Xcode

I am trying to make a pop-up alert appear at certain intervals during a countdown, say at 1 hour or 15 mins remaining. but that code I have used isn't working. everything else in the code works when ...
-1
votes
2answers
12 views

How do you disable error alerts in Sharekit? [closed]

The Facebook sharer for example displays really esoteric, non user friendly error alerts, is there an easy way to just hide them all? Or do I need to actually remove the alert code from the source?
1
vote
2answers
37 views

How to add image with text into UIAlertView?

I want to add image with some text into UIAlertView like given image below Here is my code UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"Please use Settings( ) to ...
0
votes
3answers
41 views

UIAlertView Change BackGround Color

Hi I am trying to change the UiAlertview BG color to green, using setBGcolor it give me following output, Which had a dark color Specified in SetBGColor, anyother way to remove the background color or ...
0
votes
1answer
55 views

How to make UIAlertView pause thread and wait user response, iOS dev

Please read through all my question and see if it is duplicate with this question Sometimes I believe iOS is the best OS and xCode is the most elegant IDE too, but sometimes I think they're both the ...
1
vote
3answers
40 views

How can i add a stylish white color uialertview with activity indicator

when i press one button i have to display one white color uialertview with activity indicator for 5 seconds ? i saw some codes and i select the following code ,is that enough? how can i change the ...
0
votes
2answers
28 views

UIAlertView not firing, after UIActionSheet is displayed

I have been searching high and low for the answer to my issue. You see I have a UIActionSheet and I am firing it off when the user tries to press a button that they aren't supposed to: it works great, ...
-4
votes
0answers
15 views

How do I add a UIAlertView on the press of a button?

I want to create a UIAlertView on the press of a button. In my game I would like to tell the player a little about the level before they proceed and I would like to do it with a UIAlterView. How do I ...
-4
votes
0answers
67 views

Generate UIAlert when gps speed decreases to zero [closed]

How to Generate UIAlert when gps speed decreases to zero Here is my code - (void)viewDidLoad { [super viewDidLoad]; CLController = [[CoreLocationController alloc] init]; ...
0
votes
5answers
67 views

How to distinguish between UIAlertView Cancel and UIAlertViewStyleSecureTextInput's TextView Return?

I have created a UIAlertView alert = [[UIAlertView alloc] initWithTitle:@"Test" message:@"Working" delegate:self ...
0
votes
3answers
28 views

How to pass dictionary values in UIAlertView?

I have this dictionary: NSMutableDictionary *responseDict = [responseString objectFromJSONString]; {"order_processed":"N","m_fname":"zohaib","m_lname":"sheikh", ...
0
votes
1answer
28 views

UIAlertView for No Matches Found in Search

I have a UISearchBar on my MKMapView that searches the maps annotations. I'm trying to incorporate an alert that lets the users know if no matches were found. The problem is that the alert comes up ...
0
votes
6answers
72 views

How to make the UIAlertView call itself again?

Below is the scenario. I have created a UIAlertView in viewDidLoad of the Controller in which I display the Alert. loginAlert = [[UIAlertView alloc] initWithTitle:@"Check" ...
0
votes
3answers
42 views

UIAlertView wait until name entered

I have small problem, it looks like thread can sort it, but I'm not good in threads, I read many tutorials, but still didn't get idea how to sort it. Scenario is: I am saving file to Amazon s3, and ...
-1
votes
2answers
31 views

Errors with Alert Views

I have an error when I run my code: It says undeclared identifier of 'alertView' for this line of code: -(void)alertView:(UIAlertView* )alertView clickedButtonAtIndex:(NSInteger)buttonIndex { ...
1
vote
1answer
46 views

Storyboard viewcontroller is opening?

When i click my login button i want to open home viewcontroller in my app,but just before somedays its working but now its not working ,when i click login it send the user details to server and give ...
0
votes
2answers
31 views

output for a texteild is zero rather then an actual result

This is a strange output, I seem to trigger the alert view each time, and the value for num1 would be 0.50 which is fine. When I click calculate the alert field is triggered, and what's more num1 is ...
0
votes
0answers
34 views

UIAlertView with TableView inside not working in iPad

In my project I have to web response in a list format, user would select a particular response and again modified data would be sent to Server. For this purpose I am using a UIAlertView with ...
0
votes
0answers
23 views

Changing button title with alertview input

I'm new to xcode and I'm trying to make a project which makes you change the title of a UIButton after pressing it by the input of a "plaintextinput" alertview that will pop-up after the button was ...
0
votes
1answer
46 views

How to pause code execution while waiting for UIAlertView response?

I have UIAlertView and I need to decide which code to run according to the user response (depends on the button the user presses YES/NO) I've found some solutions for that but they all won't work for ...
2
votes
4answers
65 views

Crash with multiline UIAlertView message

Crash log -[UIAlertView displayScrollerIndicators]: unrecognized selector sent to instance 0x1fbaf120 The code is: UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Some ...
0
votes
1answer
35 views

Accessing Settings app values and opening it if needed

I have seen that there are known apps, such as Twitter and Facebook, that display a "Turn Off Airplane Mode or Use Wi-Fi to Access Data" message within an alert view, with a button that switches to ...
0
votes
6answers
59 views

How to remove the brackets in UIAlertView

I am using the this code UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Call Forward Enabled" message:[NSString stringWithFormat:@"All calls to %@ are now forwarded to ...
0
votes
0answers
11 views

NSLocalizedString, Uialertview Language did not change

I am Alertview developing iPhone application that I want to print the message in English and Turkish. But I've turned iPhone language settings in the Turkish language messages continue to arrive in ...
0
votes
0answers
65 views

Crash [UIAlertView dismissWithClickedButtonIndex:animated:]

I just got notified that one of my users had a crash caused by the call [UIAlertView dismissWithClickedButtonIndex:animated:]. Now only one user has ever had this crash in 6 months of production ...
0
votes
1answer
54 views

UIAlertView Intermittently Doesn't Call Delegate Method

I have an UIAlertView that pops up and displays a progress spinner while a specific action is being performed. That action has a callback method that programmatically dismisses the progress alert and ...
0
votes
2answers
34 views

NSCredential in UIAlertView to connect to a WebService

I have a NavigationController that hold ViewControllers, but I want that to access to some ViewControllers an authentification via an UIAlertView. (Some ViewControllers content need a ...
-4
votes
0answers
15 views

SIGSEGV: Alertview Crash on Undocumented method

0 libobjc.A.dylib 0x338fef78 objc_msgSend 1 UIKit 0x33732ac9 -[_UIAlertStackWatcher _repopupIfNecessaryWithNotification:] 2 Foundation 0x35106933 __NSFireDelayedPerform 3 CoreFoundation ...
-5
votes
1answer
26 views

objective-c, if i have a time say example 10:00pm how do i pop an alert at 9:40pm reminding the user they only have 20mins left? [closed]

i have an iphone app with a list of restaurants and showing all the times the restaurants open and close. i get reviews that when a user places an order and checks out and completes the order the user ...
0
votes
0answers
16 views

iPad Alert View Crash

I have an application with master view controller and detail view controller. In my master view controller i have a method which download some data and at the end of download show alert view message ...
0
votes
2answers
65 views

IOS- Pop-up with storyboard

I'm using storyboard and i want to add a popup to my app. My popup will contain a slider (which i need to get his value), and also cancel option ('x' at top of the popup). What is the best way to do ...
0
votes
1answer
18 views

Program/Method Flow with Threads

I have a UIAlertView that initiates an update process. The UIAlertView asks the user whether they'd like to update or not. Here's my code: - (void)reachabilityChanged:(NSNotification *)notification ...
0
votes
1answer
67 views

Debug objc_msgSend crash I cant reproduce

I've had some crash reports from bugsense for my iOS app I'm not able to reproduce and so not to debug. It happens more than 200 times a day so I guess it's quite serious. I've read something about ...
2
votes
0answers
52 views

UIDatePicker customization

Hi guys I have customized UIDatePicker to a level and I am adding it to UIAlertView. but I am getting a black color on the bottom and the top of date picker, how to remove it. I want the date ...
0
votes
3answers
41 views

Is possible to declare something like lambda function what OK button from UIAlert is going to do?

In controller on different actions I need to show UIAlertView with "OK" and "CANCEL" buttons, and every "OK" click on those 5 UIAlertViews need to do different things. Is possible to declare something ...
0
votes
2answers
64 views

iOS crash when switching view controllers

I have a crash when switching between two view controllers. Basically the layout goes like this --> Swipe to the right to reveal the left menu view underneath the top View Controller --> Upon ...
0
votes
1answer
56 views

Calling UIAlertView in block displays view multiple times

I have a block completion being called from within a button press message and, depending on state, optionally a UIAlertView being displayed. However, when invoked the UIAlertView appears three (3) ...
0
votes
2answers
172 views

iOS 6.1.2 - Why the UIAlertView not be dismissed? background still on the screen

here is my code: UIAlertView *someError = [[UIAlertView alloc] initWithTitle:nil message:@"Server Error!" delegate:nil cancelButtonTitle: @"ok" otherButtonTitles: nil]; [someError show]; when I tap ...
0
votes
1answer
62 views

a specific instance of insertsubview at index not working in ios 6.0

I'm testing my ios app that has a deployment target of 5.0 and a base SDK of 6.1. Everything works fine in ios 5.0, and ios 5.1, but in ios 6.0 I'm having an issue with inserting a subview at index. ...
0
votes
1answer
34 views

IOS: UIAlertView “Please Wait” and NSURLConnection

In my ViewDidLoad I call UiAlertView "Getting data. Please Wait...." and a NsTimer scheduledTimerWithTimeInterval 5 sec. After this I create a method GetData with NSURLConnection to get data from ...
0
votes
1answer
88 views

Android view alert msg when i receive messege from service

Hi i have a problem on my project, i have one activity and service , i use messenger to communication with us. I would view a alert dialog when i receive a message from service ,but this dialog is not ...
1
vote
2answers
70 views

UIAlertView error outside of the bounds of the array of a text field but not using textfields

I'm using the UIAlertView but I get the following error message: * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'textFieldIndex (0) is outside of the bounds of the ...
0
votes
2answers
72 views

UIAlertView clickedButtonAtIndex method is not called

in .h file @interface MenuViewController : UIViewController<UIAlertViewDelegate> in .m file @interface TACDIYMenuViewController () @end @implementation TACDIYMenuViewController - ...
0
votes
3answers
51 views

Taking Text From a UIAlertView

There seems to be something missing, but the below code is generating nil values for both title and title1 (even though it launches the right alert type correctly and doesn't indicate any warning or ...
-1
votes
1answer
44 views

Add UIActionsheet into UIAlertView

How can i add uiactionsheet into uialertview ??? I am also add tableview into alertview and also want to add actionsheet which having four buttons when i wrote these code its gives error UIAlertView ...
2
votes
1answer
59 views

How to make UIAlertView call `alertViewShouldEnableFirstOtherButton:` after making changes?

I have a UIAlertView with a UITextField. I have connected the UIAlertView delegate and I return YES or NO in alertViewShouldEnableFirstOtherButton: depending on the text in the UITextField. I need ...

1 2 3 4 5 24