0

我正在处理 loacl 通知通知成功。但我不想为来自选择器的通知设置触发时间我想设置用户想要的通知触发时间。我已经给文本字段输入时间,并希望根据用户时间设置 firedate。

假设用户在下午 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];
4

1 回答 1

0

您可以通过使用将字符串转换为 NSDate NSDateFormatter,然后将该 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/

您应该使用 aUIDatePicker让用户轻松输入日期和时间。这是一个解释如何使用它的教程:http ://www.edumobile.org/iphone/iphone-programming-tutorials/add-datepicker-programmatically-and-display-date-in-iphone/

于 2013-11-15T06:58:53.080 回答