我正在创建这样的本地通知:
UILocalNotification * notification = [[UILocalNotification alloc] init];
notification.alertBody = @"Alert body";
notification.alertAction = @"Yes";
notification.fireDate = [NSDate date];
[[UIApplication sharedApplication] presentLocalNotificationNow:notification];
如果它在手机锁定时出现,则只有在“滑动解锁”滑块之前显示的短信。我知道可以显示一些带有警报的图标。我的应用程序的图标大小为 57 x 57。有什么建议吗?