UIlocalNotification正文

时间:2013-08-20 08:37:47

标签: iphone uialertview uilocalnotification

如果我需要显示所有正文

,如何进行本地通知
 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];

这个问题

enter image description here

1 个答案:

答案 0 :(得分:1)

简单地说:你不能。您可能希望缩短文本,或在用户从此通知中打开应用程序时显示完整消息。 请注意,裁剪不仅取决于字符数,还取决于字符宽度(如果您支持多种语言)。