Maximum UILocalNotification mismatch

The Apple Local and Push Notification Programming Guide states:

Each application on the device limited to speedy shooting 64 scheduled local notifications . reset operating systems that exceed this limit. It considers a recurring notice to be the only notice. LINK

However, the iOS Application Programming Guide says:

Listing 4-3 shows an example of setting a single signal using a date and time set by the user. This example configures only one alarm at a time and cancels the previous alarm before scheduling a new one. (Your own applications can have no more than 128 local notifications active at any given time, any of which can be configured to repeat at a specified interval.) LINK

Which one is correct? Am I receiving 64 notifications or 128 notifications?

+6
source share
1 answer

Finally, I checked the test, and the answer is 64 local notifications.

+8
source

Source: https://habr.com/ru/post/888782/


All Articles