Questions tagged [alertview]
85 questions
2
votes
3 answers
iOS- How to show alertView before code starts
I have the following code:
-(IBAction)showAlertView:(id)sender{
alertView = [[UIAlertView alloc] initWithTitle:@"Atualizando" message:@"\n"delegate:self cancelButtonTitle:nil otherButtonTitles:nil];
spinner = [[UIActivityIndicatorView alloc]…

Daniel Ruhman
- 123
- 2
- 13
2
votes
1 answer
UIAlertView not dismissing
I'm using the following inside a button click or (IBAction)
- (IBAction)HistoryBtn:(id)sender {
self startReport];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
//============================
…

BarryF
- 77
- 1
- 10
1
vote
1 answer
"applicationDidReceiveMemoryWarning" memory warning alert in AppDelegate swfit4.2?
We have handled the memory warning alert in AppDelegate class in our application. It navigates to the home screen when it called "applicationDidReceiveMemoryWarning" function but the alert is not shown?
I will add my code below. Can anyone help…

HariKarthick
- 1,369
- 1
- 19
- 47
1
vote
0 answers
How do I get iOS system alertView callback?
This alertView pop up from system;
I want to know when the user click "Cancel", and when the user click "Pair".
I know AppDelegate.m->applicationDidBecomeActive: will be executed, but I don't know the user click "Cancel" or "Pair".
Anyone give…

Antony Wong
- 562
- 5
- 17
1
vote
3 answers
How to dismiss all the alertview from an array when select the cancel button in alertview?
How to dismiss all the alertview from an array when select the cancel button in alertview? I have 5 alertview in an array.. if i choose cancel from the first alertview then it will need to close remaining all alert instead of display.
for…

Purushothaman
- 106
- 1
- 1
- 6
1
vote
1 answer
AlertViewController in Parse
I am using the Parse login controller (default Parse one they offer) to implement a user login/pass for my app. It works fine, I am able to log in, register, and the whole thing.
The only thing is that I want to add an alert if the password is…

Josh O'Connor
- 4,694
- 7
- 54
- 98
1
vote
1 answer
How to detect "Cancel" button of system popup view in ios?
am coding in-app purchase for the App, an Activity Indicator is shown when connecting with the itunes store. and the Activity Indicator can be stop when the connection finish in normal except the following:
There are two "Cancel" buttons:
1. When…

jdleung
- 1,088
- 2
- 10
- 26
1
vote
1 answer
Presenting UIViewController from UITableViewCell: addChildViewController unrecognized selector sent to instance
I am trying to use the SCLAlertView library to display an alert view when you click on a button in a table view cell. I'm presenting it like this from my tableviewcell.m:
- (IBAction)showSuccess:(id)sender {
SCLAlertView *alert = [[SCLAlertView…

tracifycray
- 1,423
- 4
- 18
- 29
1
vote
2 answers
Is there any default API which shows a rating alert in iOS?
All,
I would like to show an alert which allows user to rate my app. I got the following two link. However this did not answer whether any API available to show an…

Bhat
- 602
- 9
- 24
1
vote
1 answer
Is there way to customize system alerts?
I need to replace standard alert that asks permission to access user location with my own. Is it possible?
Or is there way to customize system alerts?
Thanks a lot! ;)

Nick
- 63
- 5
1
vote
3 answers
How to show alert view when tab bar item is pressed and how to ignore it when used in a other target?
I have a UITabBar project with 5 tabs.
I am making 2 targets versions out of it: Free and a Paid version.
In the free version, when a user tries to navigate to tab item index 3 or 4, a UIAlertView should appear with a basic message like:
Do you…

jOnoMato
- 13
- 1
- 5
1
vote
2 answers
Call alert view from website
I'm looking for a possibility to invoke an alert view from a website.
I'm pretty sure that this works somehow because if go through configuring your Apple ID and stuff like that in the App Store you are navigating through webviews and not a native…

Constantin Jacob
- 357
- 1
- 3
- 12
1
vote
0 answers
imagePickerControllerDidCancel with UIAlertView not working right
I am trying to present a camera view controller with a custom overlay containing two labels. I have been unable to get my imagePickerControllerDidCancel method and alertView to work properly. The system is printing the correct information to the…

Jared Gross
- 649
- 3
- 9
- 23
1
vote
1 answer
iOS UI automation: Handling two alertViews, where one triggers another
Here is what I am trying to do.
1) I have one alertView that asks "where are you shopping?". This alert has two buttons skip/cancel and continue.
2) By clicking the skip button it pops up another alertView with title "Nearby listings:" and shows a…

Lisa Satpathy
- 23
- 1
- 5
1
vote
1 answer
AlertView that can be shown from background
I have a little problem with an alert View, the idea is that when the app starts, it asks on background for new data for the app, so after receiving the information an AlertView should be shown if there is new data. The problem comes because the…

Pedro Teran
- 1,200
- 3
- 17
- 43