Local and Push Notification Programming Guideでは、次のコードを使用しています。
//...etc..
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
if (localNotif == nil)
return;
//...etc..
localNotif が nil であるシナリオはどのようなものでしょうか?
そうでなければ、if ステートメントを使用する意味がわかりません。