gpt4 book ai didi

iphone - 屏幕锁定时,本地通知不起作用

转载 作者:行者123 更新时间:2023-12-01 19:23:32 24 4
gpt4 key购买 nike

我在我的应用程序中使用本地通知,当屏幕锁定时,它在IOS-5中显示本地通知,但在IOS下面的说4中不起作用。

请帮忙吗?

最佳答案

我在iOS 4和5上都使用了以下代码段,它可以完美运行,请查看并检查您自己的代码:

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

notification.alertBody = @"Local Message";
notification.alertAction = @"View";
notification.soundName = UILocalNotificationDefaultSoundName;
notification.applicationIconBadgeNumber = 1;

notification.fireDate = date;
notification.timeZone = [NSTimeZone defaultTimeZone];

[[UIApplication sharedApplication] scheduleLocalNotification:notification];
[notification release];

关于iphone - 屏幕锁定时,本地通知不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9061319/

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