Questions tagged [alertview]

85 questions
0
votes
1 answer

AlertView dismiss on its own (do not want this) Xcode

I am trying to check if the device is connected to the internet. If it doesn't, an alert is going to pop up and the user need to press 'try again' to try again. In my code, the first time the alert view pop up, I press 'try again' and then the…
chum
  • 5
  • 1
0
votes
1 answer

Gesture Recognise + Alert View

I need to implement an app who recognise gesture (single/double tap, pan,pinch, rotation, swipe) and display an alert view.Can you help me?
user3844031
0
votes
0 answers

Ready, go! Transparent pop up/ alertView for game

In my game, I am trying to do a kind of alertView thing that says "Ready?" And then changes to "Go!" After one second. I tried to do this with an alertView but I don't know how to make the alertView title change after one second, or how to make an…
0
votes
1 answer

Trying to refresh a TableView after FileSharing in AppDelegate

I have an app that has 3 different Storyboard Views with TableViews and Controllers. The Views are accessed through a TabBar Controller. The TableViews load data and present data from a Core Data store. In my AppDelegate, I have added code that…
Doug
  • 205
  • 2
  • 4
0
votes
1 answer

Detecting # of Core Data objects in motionEnded:?

I'm trying to detect the amount of objects I have in Core Data when the user shakes the device. When I try and call a NSFetchRequest inside of motionEnded:, the simulator crashes with an unknown error at main. Is doing a fetch like this inside of…
jsmos
  • 497
  • 2
  • 5
  • 15
0
votes
1 answer

alertview closes when another alert appears

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"......" message:@"......" delegate:self cancelButtonTitle:@"Dismiss" otherButtonTitles:@"OK", nil]; [alert show]; I am showing alert view to add a new category using through text field of…
Paras Gorasiya
  • 1,295
  • 2
  • 13
  • 33
0
votes
0 answers

IOS7 GRAlertView is ignored

I have been using GRAlertView for my alerts. Now with IOS7 it is "ignored" totally. Just regular AppleWanted Alerts appear :-( Are there any solutions already found or do we have to start at point zero? THX4uRhelp
0
votes
1 answer

UIAlertView handle textfield

i want to do a simple alertView and ask for the phone number... UIAlertView *message = [[UIAlertView alloc] initWithTitle:@"What is your phone number?" message:nil …
0
votes
1 answer

wait_fences: failed to receive reply: 10004003 dismiss AlertView

I have a alertView that opens perfectly, but in the moment of dismiss crashes and gives this error and the app crashes wait_fences: failed to receive reply: 10004003 - (BOOL)webView:(UIWebView *)w shouldStartLoadWithRequest:(NSURLRequest *)request…
Ortensia C.
  • 4,666
  • 11
  • 43
  • 70
0
votes
1 answer

multiple alert views being sent crashes the application

I'm trying to send 2 alert views to the main thread but if the first alert view has not been dismissed and the second shows up, the application crashes. how would i avoid this? - (void)viewDidLoad { [super viewDidLoad]; gregorianCalendar =…
EvilAegis
  • 733
  • 1
  • 9
  • 18
0
votes
0 answers

Fluctuation in iPhone Screen when trying to open mapview

I have an app which has a functionality such that when a certain button is pressed, an alert view pops up asking for certain login credentials. When submitted, a web is called which returns that latitude and longitude which are then plotted on the…
Hassan Zaheer
  • 1,361
  • 2
  • 20
  • 34
0
votes
1 answer

Can the use of YLProgressBar added on an alert view cause rejection of my app on app store?

In my iOS application I have used alert view to show a message of 'Loading Data...' and have added a YLProgressBar as a sub view on alert view which shows the progress of data loading process. I wonder will this approach be acceptable by Apple as I…
Yogi
  • 3,578
  • 3
  • 35
  • 56
0
votes
3 answers

Can i put multiple text boxes in an alert box in ios?

can I put multiple text input boxes on the alert box in iOS?
Hassan Zaheer
  • 1,361
  • 2
  • 20
  • 34
0
votes
5 answers

how to get value of textview from alertview

i can't get the value of textView from my alertView UITextView *textView = [[UITextView alloc]initWithFrame:CGRectMake(12, 50, 260, 100)]; [textView setText:@""]; UIAlertView *av = [[UIAlertView alloc]initWithTitle:@"put text\n\n\n\n\n\n"…
kokio
  • 53
  • 7
0
votes
1 answer

Show an AlertView if a variable doesn't meet the requirement (Xcode)

I want to let an Alert View pop-up if a variable x is higher than 1000. In Xcode for iPhone Xcode is giving an Error: Expected expression in front of the "if" Here's my code so far: if (x>1000) { UIAlertView *alert = [[UIAlertView alloc]…