我试图制作它,以便用户可以在文本框中输入他们需要提醒的警报,但如果他们在通知中键入它,则不会显示该提醒我该如何解决这个问题
答案 0 :(得分:0)
您必须正确设置通知。这是一个带有objective-c的例子,我在10秒后发送通知。
- (IBAction)createNotification:(id)sender {
UILocalNotification* localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:10];
localNotification.alertBody = @"Put Here your reminder text";
localNotification.category = @"myCategory";
localNotification.timeZone = [NSTimeZone defaultTimeZone];
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
}
alertBody是您可以自定义的文本,可以是文本框或其他控件中的文本。我希望这可以帮到你