user170317
user170317

Reputation: 1202

send UIAlert from background mode

I'm currently using local notification to indicate incoming call from background mode. That's works fine, but this is what i see, when skype got a call in background mode:

enter image description here

So looks like it possible to show UIAlert from background and anybody can answer me how?

Upvotes: 1

Views: 80

Answers (1)

rckoenes
rckoenes

Reputation: 69469

No you can not display an UIAlertView from the background, but you can scheudule a UILocalNotification.

Just set the fireDate property of the UILocalNotification to the current date and it will be displayed directly.

Upvotes: 4

Related Questions