Re: My alert is not firing at all
Re: My alert is not firing at all
- Subject: Re: My alert is not firing at all
- From: Cara Quinn <email@hidden>
- Date: Sat, 26 Dec 2015 11:21:35 -0700
Hi Scott,
You have your code in a method which is called when a button is tapped but your comment says that this should be called on your first load / run of the app?
Are you actually calling this method from code? What code is calling this method?
-Just some thoughts…
Cheers!
Cara
---
iOS design and development - LookTel.com
---
View my Online Portfolio at:
http://www.onemodelplace.com/models/Cara-Quinn
Follow me on Twitter!
https://twitter.com/ModelCara
On Dec 26, 2015, at 4:40 AM, Scott Berry <email@hidden> wrote:
Hello there,
Here is the code I wrote to fire off my alert but when I run the program on the device the alert doesn’t want to fire so I am wondering what I have done wrong. I use Voiceover.
// Alert Message for first load.
@IBAction func buttonTapped(sender: AnyObject) {
let alertController = UIAlertController(title: "First Run Database Alert", message:
"Welcome to Flying With Voice! Please allow us to gather some airport information. Talking Technologies is not responsible if you do not allow us to gather this information every 56 (fifty-six) days.", preferredStyle: UIAlertControllerStyle.Alert)
alertController.addAction(UIAlertAction(title: "Dismiss", style: UIAlertActionStyle.Default,
handler: nil))
self.presentViewController(alertController, animated: true, completion: nil)
}
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden