Proud Member
Proud Member

Reputation: 40506

Is it possible to use UILocalNotification without displaying a message?

Can they trigger a method call in my app after some time without interrupting the user?

Upvotes: 2

Views: 338

Answers (1)

Noah Witherspoon
Noah Witherspoon

Reputation: 57149

You can use a local notification without setting its alert text to update your application’s badge number or to play a sound. A notification cannot bring your app out of the background without user interaction, though, so no, you can’t schedule method calls that way.

Upvotes: 4

Related Questions