Reputation: 7840
I am working on iPhone application in which there is an option for Alarm. Is it possible to araise alarm even my application close.
Upvotes: 2
Views: 655
Reputation: 12787
Use local notification available in 4.0. for a tutorial see this link
Upvotes: 1
Reputation: 1851
Use UILocalNotification
to set the notifications. Then even your application is not in foreground you will get alerts.
Upvotes: 1
Reputation: 8357
Yes to a certain degree there is, check out the local notifications programming guide (local notifications are available in iOS 4 and newer).
Upvotes: 2