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 it, but I know there is a 64 notification limit. Does this mean 64 notifications per day, or in total?
UILocalNotification
, or theUserNotifications
framework? You should prefer the latter (though it doesn't change the limit). – LeflerUNNotificationRequest
instead ofUILocalNotification
is straightforward. Look atUNMutableNotificatonContent
. But please don't ask more than one thing in a question. – Lefler