如果用戶(hù)已啟用推送通知,請(qǐng)?jiān)趇Phone上確定我正在尋找一種方法來(lái)確定用戶(hù)是否通過(guò)設(shè)置啟用或禁用了我的應(yīng)用程序的推送通知。
3 回答

縹緲止盈
TA貢獻(xiàn)2041條經(jīng)驗(yàn) 獲得超4個(gè)贊
iOS8 +(目標(biāo)C)
#import <UserNotifications/UserNotifications.h>[[UNUserNotificationCenter currentNotificationCenter]getNotificationSettingsWithCompletionHandler:^(UNNotificationSettings * _Nonnull settings) { switch (settings.authorizationStatus) { case UNAuthorizationStatusNotDetermined:{ break; } case UNAuthorizationStatusDenied:{ break; } case UNAuthorizationStatusAuthorized:{ break; } default: break; }}];
- 3 回答
- 0 關(guān)注
- 593 瀏覽
添加回答
舉報(bào)
0/150
提交
取消