※ 引述《pigcat1315 (還是朋友?)》之銘言:
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 210.59.236.139
※ 文章網址: http://www.ptt.cc/bbs/MacDev/M.1403842301.A.6CE.html
→ uranusjr:無法 06/27 13:19
→ pigcat1315:提示樣式 選無 有辦法偵測嗎? 06/27 14:21
[UIApplication sharedApplication].enabledRemoteNotificationTypes
typedef enum : NSUInteger {
UIRemoteNotificationTypeNone = 0,
UIRemoteNotificationTypeBadge = 1 << 0,
UIRemoteNotificationTypeSound = 1 << 1,
UIRemoteNotificationTypeAlert = 1 << 2,
UIRemoteNotificationTypeNewsstandContentAvailability = 1 << 3
} UIRemoteNotificationType;
文件 http://d.pr/Dh8R
要注意這是把 disply style, badge 和 sound 合併處理(先不管 newsstand)
所以提示樣式選擇無只會造成 UIRemoteNotificationTypeAlert 這個 bit 被設成 0
而不見得會回傳 UIRemoteNotificationTypeNone
所以你要用 if (types & UIRemoteNotificationTypeAlert) 這樣判斷
然後我要道德勸說一下
通知關閉是使用者的決定, 沒有人會沒事把原本打開的東西特地進去關掉
這種暗示使用者做錯事情的訊息感覺不太尊重對方
請永遠假設使用者很懶惰, 但不要把他們當笨蛋