gpt4 book ai didi

iphone - iOS:本地通知不会按时触发

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:50:50 25 4
gpt4 key购买 nike

问题是我的通知在设置时没有通过。我在 Nib 里放了一个日期选择器,在它下面放了一个按钮。用户应该在选择器中设置日期,然后单击按钮将通知设置为在日期前 60 小时触发。所以,看起来我只是在让 firedate 识别日期选择器中的日期方面遇到了问题。这是代码,它在我的 View Controller 中:

- (IBAction)scheduleNotifButton:(id)sender {
UILocalNotification *localNotif = [[UILocalNotification alloc] init];

NSDate *selectedDate = [self.datePicker date];


localNotif.fireDate = [selectedDate dateByAddingTimeInterval:-60*60*60];
localNotif.timeZone = [NSTimeZone defaultTimeZone];


localNotif.alertBody = @"Event is in three days!";

localNotif.alertAction = nil;

localNotif.soundName = UILocalNotificationDefaultSoundName;
localNotif.applicationIconBadgeNumber = 0;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Event scheduled."
message:@"You will be notified three days before the event."
delegate:nil
cancelButtonTitle:@"Okay."
otherButtonTitles:nil];
[alert show];

}

如果有帮助,这里还有一些额外的代码,这是来 self 的 View Controller 的更多代码,用于处理在用户输入的选择器中保存日期:

- (IBAction)dateChanged:(id)sender
{
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];

NSDate *selectedDate = [self.datePicker date];

[defaults setObject:selectedDate forKey:@"ImportantDatesViewController.selectedDate"];
[defaults synchronize];

}
- (void)viewDidLoad {
NSDate *storedDate = [[NSUserDefaults standardUserDefaults]
objectForKey:@"ImportantDatesViewController.selectedDate"];
if (storedDate == nil) {
storedDate = [NSDate date];
}

[self.datePicker setDate:storedDate animated:NO];

}

我已经研究这段代码 3 天了,但无法弄清楚为什么我的通知没有按预期发送。非常感谢任何帮助,谢谢!

最佳答案

你明白 UILocalNotifications 和远程通知是不同的东西吗?

在 didRegisterForRemoteNotificationsWithDeviceToken 中,您可以获得用于远程通知的设备 token 。远程通知是从服务器发送的,因此您必须将该 token 保存在您的服务器上,然后使用您的服务器发送任何远程通知。

你为什么不改变这个:

localNotif.fireDate = [eventDate dateByAddingTimeInterval:-630*60];

为此:

localNotif.fireDate = [[NSDate date] dateByAddingTimeInterval:60];

然后本地通知应该会在一分钟内消失。也许问题出在您设置的日期上。

关于iphone - iOS:本地通知不会按时触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8964541/

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