Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Maximum number of UILocalNotification for iphone

Does any know the maximum number of UILocalNotification supported by iphone OS ? Apple documentation talks about a maximum number of 64 but I wonder if that is for each application or for all applications together.

Documentation at: http://developer.apple.com/library/ios/#documentation/iphone/Reference/UILocalNotification_Class/Reference/Reference.html

like image 368
Asok Avatar asked Nov 05 '10 03:11

Asok


2 Answers

The limitation is per app.

like image 65
CuriousRabbit Avatar answered Sep 27 '22 18:09

CuriousRabbit


Each application on a device is limited to 64 scheduled local notifications. The system discards scheduled notifications in excess of this limit, keeping only the 64 notifications that will fire the soonest. Recurring notifications are treated as a single notification.

Check the Doc for more info

like image 30
Saroj Avatar answered Sep 27 '22 16:09

Saroj