如果我需要显示所有正文,如何制作 UILocal 通知
localNotif.fireDate = fireDate;
localNotif.alertBody = [NSString stringWithFormat:NSLocalizedString(@"%@", nil),
strMessage];
localNotif.alertAction = NSLocalizedString(@"View Details", nil);
localNotif.soundName = UILocalNotificationDefaultSoundName;
localNotif.applicationIconBadgeNumber = 1;
NSDictionary *infoDict = [NSDictionary dictionaryWithObject:[NSString stringWithFormat:@"Happy_%@",strMessage] forKey:ToDoItemKey];
localNotif.userInfo = infoDict;
localNotif.applicationIconBadgeNumber = localNotif.applicationIconBadgeNumber+1;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
这个问题