次のようなローカル通知を作成しています。
UILocalNotification * notification = [[UILocalNotification alloc] init];
notification.alertBody = @"Alert body";
notification.alertAction = @"Yes";
notification.fireDate = [NSDate date];
[[UIApplication sharedApplication] presentLocalNotificationNow:notification];
電話がロックされているときに発生する場合は、「スライドしてロックを解除」スライダーの前に表示されるテキスト メッセージのみです。アラート付きのアイコンを表示できることはわかっています。私のアプリにはサイズが 57 x 57 のアイコンがあります。