0

如果我需要显示所有正文,如何制作 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];

这个问题

在此处输入图像描述

4

1 回答 1

1

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

于 2013-08-20T08:41:19.087 回答