如何在本地通知中显示自定义设计(显示图像)?
问问题
457 次
1 回答
0
对于 iOS,请查看 UILocalNotification
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
if (localNotif == nil) return;
localNotif.fireDate = someDate;
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.alertBody = @"This is a custom message."
localNotif.alertAction = @"View Details";
localNotif.soundName = UILocalNotificationDefaultSoundName;
localNotif.applicationIconBadgeNumber = 1;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
[localNotif release];
在越狱中其他明智的选择可能是。
希望这会帮助你。
于 2012-10-10T06:38:27.223 回答