gpt4 book ai didi

iphone - ScheduleLocalNotification 不适用于越狱应用程序?

转载 作者:行者123 更新时间:2023-12-03 20:15:23 24 4
gpt4 key购买 nike

我有一个应用程序调用 scheduleLocalNotification ,但是当我将其安装到 /Applications 而不是 /var/mobile/Applications 时,它不起作用:

- (void) doNotify
{
// this doesn't work when app is in /Applications but does in /var/mobile/Applications
UILocalNotification * theNotification = [[UILocalNotification alloc] init];
theNotification.alertBody = @"Finished processing.";
theNotification.alertAction = @"Ok";
theNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:1];
[[UIApplication sharedApplication] scheduleLocalNotification:theNotification];
NSLog(@"notification scheduled: %@", theNotification);
}

我试过presentLocalNotification相反,如果这是一个时间问题。

我实现了didReceiveLocalNotification在应用程序委托(delegate)中查看是否正在调用它,但事实并非如此,只有当应用程序处于前台时才会调用它。

如果我将应用程序放回 /var/mobile/Applications 中,它就会正常工作。我正在使用 Xcode 4.2.1 并在 iPhone 4S 和 iPod Touch 4g 上运行 iOS 5.1.1

编辑:应用程序可以在后台运行,因为它是音乐应用程序

最佳答案

我刚才也遇到了同样的问题。而且我已经通过官方文档解决了这个问题。

事实上,您应该注册通知才能获得使用通知的权限:

UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes: UIUserNotificationTypeAlert | UIUserNotificationTypeBadge categories:nil];
[[UIApplication shareApplication] registerUserNotificationSettings: settings];

关于iphone - ScheduleLocalNotification 不适用于越狱应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11216225/

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