Hey, So I have an alert view that appears as soon as my app finishes launching. I tried the sleep (x); but that holds the entire app. Is there any way I can make my alert view wait an additional second after the app finishes launching? Thanks!
Hey, So I have an alert view that appears as soon as my app finishes launching. I tried the sleep (x); but that holds the entire app. Is there any way I can make my alert view wait an additional second after the app finishes launching? Thanks!
I really need to implement a delay, it's coming out too quick! If anyone can suggest something please!
Yes, you can use an NSTimer or the performSelector: afterDelay: method of NSObject. The performSelector is probably your best bet, since is sounds like you don't need a repeating event.
Yes, you can use an NSTimer or the performSelector: afterDelay: method of NSObject. The performSelector is probably your best bet, since is sounds like you don't need a repeating event.
You saved my life seriously, far easier than I ever expected!!! Thank you sooo much!