我正在成功处理loacl通知通知。但我不想为选择器的通知设置fireate我想设置用户想要的通知firetime。我已经给出了输入时间的文本字段,并希望根据用户时间设置激活。
假设用户输入下午1点,然后今天下午1点通知
下面是我的代码 -
NSCalendar *calendar = [NSCalendar currentCalendar]; // gets default calendar
NSDateComponents *components = [calendar components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit) fromDate:[NSDate date]]; // gets the year, month, day,hour and minutesfor today's date
[components setHour:txtStartTime.text];
// [components setMinute:12];
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = [calendar dateFromComponents:components];
localNotification.timeZone = [NSTimeZone localTimeZone];
localNotification.alertBody = txtSubjectName.text;
localNotification.alertAction = @"Lecture Notification";
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
[self dismissViewControllerAnimated:YES completion:nil];
答案 0 :(得分:0)
您可以使用NSDateFormatter
将字符串转换为NSDate,然后将该NSDate用作fireDate。但是,只有当用户完全按预期输入日期时,它才能正常工作。以下是其工作原理的代码示例:
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"yyyy-MM-dd hh:mm:ss a"];
NSDate *myDate = [df dateFromString: myDateAsAStringValue];
这是一个显示不同日期格式模式的网站,因此您可以创建自己的输入样式:http://waracle.net/iphone-nsdateformatter-date-formatting-table/
您应该使用UIDatePicker
让用户轻松输入日期和时间。这是一个解释如何使用它的教程:http://www.edumobile.org/iphone/iphone-programming-tutorials/add-datepicker-programmatically-and-display-date-in-iphone/