由于我无法得到一个好的答案并且花了很多时间在这上面,我会详细地问我的问题
我想要的只是根据日期选择器创建一个警报。从现在开始将闹钟设置为 10 秒,效果很好。UIDatePicker,有效(打印日期,但不是我选择的日期,而是 3 小时后)我知道当地时间有问题,但我找不到任何好的解释。
我的建议,我想几乎每个人都不会参与当地时间,而是要带上每个用户的时钟,并根据他的时间设置闹钟。
我的代码不起作用,我不知道为什么。它没有触发(仅当我将其设置为 10 秒后)
拜托,我知道时区应该不同或其他什么,但如果你能解释到底要做什么以及如何做,那就太好了。谢谢。
这是代码:
-(void)setDatePicker
{
CGRect pickerFrame = CGRectMake(0,265,0,0);
UIDatePicker *myPicker = [[UIDatePicker alloc] initWithFrame:pickerFrame];
[myPicker addTarget:self action:@selector(pickerChanged:) forControlEvents:UIControlEventValueChanged];
[[[CCDirector sharedDirector] view] addSubview:myPicker];
[myPicker release];
}
-(void)pickerChanged:(UIDatePicker*) datePicker
{
date=datePicker.date;
NSLog(@"value: %@",date);
}
和本地通知:
-(void) scheduleNotificationForDate: (NSDate*)theDate
{
/* Here we cancel all previously scheduled notifications */
[[UIApplication sharedApplication] cancelAllLocalNotifications];
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
//NSDateFormatter *dateFormat = [[[NSDateFormatter alloc]init]autorelease];
//[dateFormat setDateFormat:@"YYYY-MM-dd HH:mm:ss"];
//NSDate *notificationDate = [dateFormat stringFromDate:theDate];
localNotification.fireDate = theDate;
NSLog(@"Notification will be shown on: %@",localNotification.fireDate);
localNotification.timeZone = [NSTimeZone defaultTimeZone];
localNotification.alertBody = [NSString stringWithFormat:
@"Your notification message"];
localNotification.alertAction = NSLocalizedString(@"View details", nil);
localNotification.soundName = UILocalNotificationDefaultSoundName;
localNotification.applicationIconBadgeNumber = -1;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
}