我使用此代码创建本地通知:
UILocalNotification *notification=[[UILocalNotification alloc]init];
notification.soundName = @"new_friend_request.mp3";
notification.repeatInterval = 0;
notification.alertAction = @"Go to";
notification.userInfo = [NSDictionary dictionaryWithObject:@"actionNotification" forKey:@"actionNotification"];
notification.alertBody = @"Body";
[[UIApplication sharedApplication] presentLocalNotificationNow:notification];
[notification release];
但是按下主页按钮后,我在 iPhone 的主屏幕上看不到通知警报正文。
一开始我以为通知没有被调用,但后来我使用调试发现,通知被正确调用。
所以,我不知道,为什么它不起作用。