gpt4 book ai didi

ios - UILocalNotification 根本不起作用

转载 作者:IT王子 更新时间:2023-10-29 08:12:56 26 4
gpt4 key购买 nike

我在使用 UILocalNotification 时遇到了一些非常恼人的问题。

在完成我即将完成的应用程序时,我注意到无论我尝试什么,我都无法让本地通知正常工作。

因此,我没有浪费时间,而是决定回到基础,看看我是否能让它们发挥作用。

我创建了一个新的基于 XCode View 的应用程序,并将 -viewDidLoad 替换为:

- (void)viewDidLoad
{
UILocalNotification * theNotification = [[UILocalNotification alloc] init];
theNotification.alertBody = @"Alert text";
theNotification.alertAction = @"Ok";
theNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:10];

[[UIApplication sharedApplication] scheduleLocalNotification:theNotification];
}

然而,这也没有任何作用。
我希望在启动应用程序后 10 秒看到通知,但什么也没出现。
此外,我在我的 iPhone 和模拟器上都对此进行了测试。

我是否遗漏了一些非常重要的东西? (我搜索了 Apple 文档,但找不到任何关于为什么会发生这种情况的信息)

谢谢

最佳答案

UILocalNotification 仅在应用运行(或在后台运行)时自动显示。如果应用程序正在运行并且本地通知触发,UIApplicationDelegate- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification 方法被调用并且系统不显示任何内容(也不播放声音)。如果要显示通知,请在委托(delegate)方法中自己创建一个 UIAlertView

关于ios - UILocalNotification 根本不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4974512/

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