Siddiqui
Siddiqui

Reputation: 7840

Alarm Even Application Closed in iPhone

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

Answers (3)

Ishu
Ishu

Reputation: 12787

Use local notification available in 4.0. for a tutorial see this link

Upvotes: 1

YPK
YPK

Reputation: 1851

Use UILocalNotification to set the notifications. Then even your application is not in foreground you will get alerts.

Upvotes: 1

Robin
Robin

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).

http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Introduction/Introduction.html

Upvotes: 2

Related Questions