gpt4 book ai didi

ios - 一次可以设置多少个uilocalnotifications?

转载 作者:可可西里 更新时间:2023-11-01 04:23:26 26 4
gpt4 key购买 nike

我设置了大约 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];

}
}

最佳答案

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

For more Info

关于ios - 一次可以设置多少个uilocalnotifications?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25195893/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com