一次可以设置多少个uilocalnotifications?

RJV*_*mar 5 ios uilocalnotification

我设置了大约370 UILocalNotification秒,但我只能设置64 ...

 for(int i = 0 ; i<[arr count] ; i++){

        UILocalNotification* alarm = [[UILocalNotification alloc] init];


        // Create a new notification.
        if (alarm)
        {
            alarm.fireDate = indDate;
            alarm.timeZone = [NSTimeZone defaultTimeZone];
            //alarm.repeatInterval = NSMinuteCalendarUnit;
            alarm.soundName = @"alarmsound.caf";
            alarm.alertBody = @"Message";
            [app scheduleLocalNotification:alarm];
            [[UIApplication sharedApplication] scheduleLocalNotification:alarm];

        }
}
Run Code Online (Sandbox Code Playgroud)

Man*_*wal 6

最大限制是64.我也有同样的问题,我需要安排许多通知.我已经安排了64个通知,当应用程序再次打开时,我将安排剩余的通知.

欲了解更多信息