Is the iOS Local Notification Limit Per Day?

前端 未结 2 495
迷失自我
迷失自我 2021-02-04 16:08

I\'m working on an app where I need to send a good amount of notifications to the user daily. Around 5-40 depending on the user.

I\'m using local notifications to send i

2条回答
  •  -上瘾入骨i
    2021-02-04 16:12

    It means simultaneously scheduled for future delivery. You can send as many as you want per day, provided they don't overlap.

    If you add more than 64 requests (under UserNotifications) or scheduled (under UIApplication/UILocalNotification), the older ones will be dropped and not delivered.

提交回复
热议问题