的Local and Push Notification Programming Guide使用此代碼:Can [[UILocalNotification alloc] init]是否爲零?
//...etc..
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
if (localNotif == nil)
return;
//...etc..
我想知道這可能是其中localNotif是零的情況下?
否則,我沒有看到具有該if語句的觀點。
我做到了,localNotif在這種情況下也不是零! – Lio