ユーザーが設定により、アプリケーションのプッシュ通知を有効または無効にしたかどうかを判断する方法を探しています。
enabledRemoteNotificationsTypes
を呼び出して、マスクを確認します。
例えば:
UIRemoteNotificationType types = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if (types == UIRemoteNotificationTypeNone)
// blah blah blah
iOS8以降:
[[UIApplication sharedApplication] isRegisteredForRemoteNotifications]
量子ポテトの問題:
types
は
UIRemoteNotificationType types = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
使用できます
if (types & UIRemoteNotificationTypeAlert)
の代わりに
if (types == UIRemoteNotificationTypeNone)
通知が有効になっているかどうかのみを確認できます(サウンド、バッジ、通知センターなどについて心配する必要はありません)。コードの最初の行(types & UIRemoteNotificationTypeAlert
)は、[アラートスタイル]が[バナー]または[アラート]に設定されている場合はYES
を返し、[アラートスタイル]が[なし]に設定されている場合はNO
を返します。
IOSの最新バージョンでは、このメソッドは非推奨になりました。 iOS 7とiOS 8の両方をサポートするには:
UIApplication *application = [UIApplication sharedApplication];
BOOL enabled;
// Try to use the newer isRegisteredForRemoteNotifications otherwise use the enabledRemoteNotificationTypes.
if ([application respondsToSelector:@selector(isRegisteredForRemoteNotifications)])
{
enabled = [application isRegisteredForRemoteNotifications];
}
else
{
UIRemoteNotificationType types = [application enabledRemoteNotificationTypes];
enabled = types & UIRemoteNotificationTypeAlert;
}
Swift4.0、iOS11の更新コード
import UserNotifications
UNUserNotificationCenter.current().getNotificationSettings { (settings) in
print("Notification settings: \(settings)")
guard settings.authorizationStatus == .authorized else { return }
//Not authorised
UIApplication.shared.registerForRemoteNotifications()
}
Swift3.0、iOS10のコード
let isRegisteredForRemoteNotifications = UIApplication.shared.isRegisteredForRemoteNotifications
if isRegisteredForRemoteNotifications {
// User is registered for notification
} else {
// Show alert user is not registered for notification
}
IOS9から、Swift 2.0 UIRemoteNotificationTypeは非推奨になりました。次のコードを使用してください
let notificationType = UIApplication.shared.currentUserNotificationSettings!.types
if notificationType == UIUserNotificationType.none {
// Push notifications are disabled in setting by user.
}else{
// Push notifications are enabled in setting by user.
}
プッシュ通知が有効になっているかどうかを確認するだけです
if notificationType == UIUserNotificationType.badge {
// the application may badge its icon upon a notification being received
}
if notificationType == UIUserNotificationType.sound {
// the application may play a sound upon a notification being received
}
if notificationType == UIUserNotificationType.alert {
// the application may display an alert upon a notification being received
}
以下に、iOS8とiOS7(およびそれ以前のバージョン)の両方をカバーする完全な例を示します。 iOS8より前は、「リモート通知が無効」と「ロック画面で表示有効」とを区別できないことに注意してください。
BOOL remoteNotificationsEnabled = false, noneEnabled,alertsEnabled, badgesEnabled, soundsEnabled;
if ([[UIApplication sharedApplication] respondsToSelector:@selector(registerUserNotificationSettings:)]) {
// iOS8+
remoteNotificationsEnabled = [UIApplication sharedApplication].isRegisteredForRemoteNotifications;
UIUserNotificationSettings *userNotificationSettings = [UIApplication sharedApplication].currentUserNotificationSettings;
noneEnabled = userNotificationSettings.types == UIUserNotificationTypeNone;
alertsEnabled = userNotificationSettings.types & UIUserNotificationTypeAlert;
badgesEnabled = userNotificationSettings.types & UIUserNotificationTypeBadge;
soundsEnabled = userNotificationSettings.types & UIUserNotificationTypeSound;
} else {
// iOS7 and below
UIRemoteNotificationType enabledRemoteNotificationTypes = [UIApplication sharedApplication].enabledRemoteNotificationTypes;
noneEnabled = enabledRemoteNotificationTypes == UIRemoteNotificationTypeNone;
alertsEnabled = enabledRemoteNotificationTypes & UIRemoteNotificationTypeAlert;
badgesEnabled = enabledRemoteNotificationTypes & UIRemoteNotificationTypeBadge;
soundsEnabled = enabledRemoteNotificationTypes & UIRemoteNotificationTypeSound;
}
if ([[UIApplication sharedApplication] respondsToSelector:@selector(registerUserNotificationSettings:)]) {
NSLog(@"Remote notifications enabled: %@", remoteNotificationsEnabled ? @"YES" : @"NO");
}
NSLog(@"Notification type status:");
NSLog(@" None: %@", noneEnabled ? @"enabled" : @"disabled");
NSLog(@" Alerts: %@", alertsEnabled ? @"enabled" : @"disabled");
NSLog(@" Badges: %@", badgesEnabled ? @"enabled" : @"disabled");
NSLog(@" Sounds: %@", soundsEnabled ? @"enabled" : @"disabled");
Swift 3 +
if #available(iOS 10.0, *) {
UNUserNotificationCenter.current().getNotificationSettings(completionHandler: { (settings: UNNotificationSettings) in
// settings.authorizationStatus == .authorized
})
} else {
return UIApplication.shared.currentUserNotificationSettings?.types.contains(UIUserNotificationType.alert) ?? false
}
IOS10 +用のRxSwift Observableバージョン:
import UserNotifications
extension UNUserNotificationCenter {
static var isAuthorized: Observable<Bool> {
return Observable.create { observer in
DispatchQueue.main.async {
current().getNotificationSettings(completionHandler: { (settings: UNNotificationSettings) in
if settings.authorizationStatus == .authorized {
observer.onNext(true)
observer.onCompleted()
} else {
current().requestAuthorization(options: [.badge, .alert, .sound]) { (granted, error) in
observer.onNext(granted)
observer.onCompleted()
}
}
})
}
return Disposables.create()
}
}
}
IOS8以前の両方をサポートしようとして、Kevinが示唆したようにisRegisteredForRemoteNotifications
を使用することはあまりうまくいきませんでした。代わりにcurrentUserNotificationSettings
を使用しましたが、これはテストでうまく機能しました。
+ (BOOL)notificationServicesEnabled {
BOOL isEnabled = NO;
if ([[UIApplication sharedApplication] respondsToSelector:@selector(currentUserNotificationSettings)]){
UIUserNotificationSettings *notificationSettings = [[UIApplication sharedApplication] currentUserNotificationSettings];
if (!notificationSettings || (notificationSettings.types == UIUserNotificationTypeNone)) {
isEnabled = NO;
} else {
isEnabled = YES;
}
} else {
UIRemoteNotificationType types = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if (types & UIRemoteNotificationTypeAlert) {
isEnabled = YES;
} else{
isEnabled = NO;
}
}
return isEnabled;
}
残念ながら、これらのソリューションはいずれも実際にを提供していませんでした。1日の終わりには、適切な情報の提供に関してAPIが非常に不足しているためです。いくつか推測できますが、currentUserNotificationSettings
(iOS8 +)を使用するだけでは、現在の形式では質問に実際に答えるには不十分です。ここでの解決策の多くは、それまたはisRegisteredForRemoteNotifications
がより決定的な答えであることを示唆しているように見えますが、実際にはそうではありません。
このことを考慮:
isRegisteredForRemoteNotifications
ドキュメントの状態:
システム全体の設定を考慮して、アプリケーションが現在リモート通知用に登録されている場合はYESを返します...
ただし、動作を観察するためにアプリデリゲートに単にNSLog
をスローすると、これが動作することを期待するように動作しないことは明らかです。実際には、このアプリ/デバイスに対してアクティブ化されたリモート通知に直接関係します。初めて有効にすると、常にYES
が返されます。設定(通知)でそれらをオフにしても、これはYES
を返します。これは、iOS8の時点で、アプリがリモート通知に登録し、ユーザーが通知を有効にせずにデバイスに送信するためです。ユーザーが有効にしない限り、アラート、バッジ、サウンドを実行できない場合があります。サイレント通知は、通知をオフにしても引き続き実行できることの良い例です。
currentUserNotificationSettings
に関しては、次の4つのいずれかを示します。
アラートはオンバッジはオンサウンドはオンなしはオンです。
これにより、他の要因や通知スイッチ自体についてはまったく表示されません。
ユーザーは、実際にはバッジ、サウンド、アラートをオフにしても、ロック画面または通知センターに表示されることがあります。このユーザーは引き続きプッシュ通知を受信し、ロック画面と通知センターの両方でそれらを表示できるはずです。通知スイッチがオンになっています。ただし、currentUserNotificationSettings
は次を返します。その場合はUIUserNotificationTypeNone
です。これは、ユーザーの実際の設定を正確に示すものではありません。
いくつかの推測ができます:
isRegisteredForRemoteNotifications
がNO
である場合、このデバイスはリモート通知に正常に登録されていないと想定できます。application:didRegisterUserNotificationSettings:
へのコールバックが行われます。これは、ユーザーが最初に登録されているため、この時点でユーザー通知設定が含まれていますshould許可要求に関して選択されたユーザー。設定がUIUserNotificationTypeNone
以外のものと等しい場合、Push許可が付与され、そうでない場合は拒否されました。これは、リモート登録プロセスを開始した時点から、ユーザーは承諾または辞退する能力しかなく、承諾の初期設定は登録プロセス中に設定した設定であるためです。答えを完成させるには、次のように動作します...
UIRemoteNotificationType types = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
switch (types) {
case UIRemoteNotificationTypeAlert:
case UIRemoteNotificationTypeBadge:
// For enabled code
break;
case UIRemoteNotificationTypeSound:
case UIRemoteNotificationTypeNone:
default:
// For disabled code
break;
}
編集:これは正しくありません。これらはビット単位のものであるため、スイッチでは機能しないため、これの使用を終了しました:
UIRemoteNotificationType types = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
UIRemoteNotificationType typesset = (UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge);
if((types & typesset) == typesset)
{
CeldaSwitch.chkSwitch.on = true;
}
else
{
CeldaSwitch.chkSwitch.on = false;
}
IOS7以前では、実際にenabledRemoteNotificationTypes
を使用し、UIRemoteNotificationTypeNone
と等しい(または、目的に応じて等しくない)かどうかを確認する必要があります。
ただし、iOS8の場合は、上記の状態と同じ数のisRegisteredForRemoteNotifications
でのみチェックするのにnotで十分です。 application.currentUserNotificationSettings.types
が等しい(または、必要に応じて等しくない)UIUserNotificationTypeNone
もチェックする必要があります!
currentUserNotificationSettings.types
はisRegisteredForRemoteNotifications
を返しますが、UIUserNotificationTypeNone
はtrueを返す場合があります。
iOS8 +(Objective 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;
}
}];
UIRemoteNotificationType types = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if (types & UIRemoteNotificationTypeAlert)
// blah blah blah
{
NSLog(@"Notification Enabled");
}
else
{
NSLog(@"Notification not enabled");
}
ここでは、UIApplicationからUIRemoteNotificationTypeを取得します。設定でこのアプリのプッシュ通知の状態を表します。そのタイプを簡単に確認できます
@Shaheen Ghiassyが提供するソリューションを使用してiOS 10以降をサポートしようとしましたが、剥奪問題enabledRemoteNotificationTypes
を見つけました。したがって、iOS 8で非推奨になったisRegisteredForRemoteNotifications
の代わりにenabledRemoteNotificationTypes
を使用して見つけたソリューションは、私にとって完璧に機能する更新されたソリューションです。
- (BOOL)notificationServicesEnabled {
BOOL isEnabled = NO;
if ([[UIApplication sharedApplication] respondsToSelector:@selector(currentUserNotificationSettings)]){
UIUserNotificationSettings *notificationSettings = [[UIApplication sharedApplication] currentUserNotificationSettings];
if (!notificationSettings || (notificationSettings.types == UIUserNotificationTypeNone)) {
isEnabled = NO;
} else {
isEnabled = YES;
}
} else {
if ([[UIApplication sharedApplication] isRegisteredForRemoteNotifications]) {
isEnabled = YES;
} else{
isEnabled = NO;
}
}
return isEnabled;
}
そして、この関数を簡単に呼び出して、そのBool
値にアクセスし、これにより文字列値に変換できます。
NSString *str = [self notificationServicesEnabled] ? @"YES" : @"NO";
他の人にも役立つことを願っています:)ハッピーコーディング。
Zacの答えはiOS 7まで完全に正しいものでしたが、iOS 8が登場してから変更されました。 enabledRemoteNotificationTypesはiOS 8以降では非推奨になったためです。 iOS 8以降では、isRegisteredForRemoteNotificationsを使用する必要があります。
このSwiftyソリューションは私にとってはうまくいきました(iOS8 +)、
メソッド:
func isNotificationEnabled(completion:@escaping (_ enabled:Bool)->()){
if #available(iOS 10.0, *) {
UNUserNotificationCenter.current().getNotificationSettings(completionHandler: { (settings: UNNotificationSettings) in
let status = (settings.authorizationStatus == .authorized)
completion(status)
})
} else {
if let status = UIApplication.shared.currentUserNotificationSettings?.types{
let status = status.rawValue != UIUserNotificationType(rawValue: 0).rawValue
completion(status)
}else{
completion(false)
}
}
}
使用法:
isNotificationEnabled { (isEnabled) in
if isEnabled{
print("Push notification enabled")
}else{
print("Push notification not enabled")
}
}
Xamarinでは、上記のすべてのソリューションが機能しません。これは私が代わりに使用するものです:
public static bool IsRemoteNotificationsEnabled() {
return UIApplication.SharedApplication.CurrentUserNotificationSettings.Types != UIUserNotificationType.None;
}
[設定]で通知ステータスを変更した後もライブアップデートを取得しています。
re:
これは正しいです
if (types & UIRemoteNotificationTypeAlert)
しかし、以下も正しいです! (UIRemoteNotificationTypeNoneが0であるため)
if (types == UIRemoteNotificationTypeNone)
以下をご覧ください
NSLog(@"log:%d",0 & 0); ///false
NSLog(@"log:%d",1 & 1); ///true
NSLog(@"log:%d",1<<1 & 1<<1); ///true
NSLog(@"log:%d",1<<2 & 1<<2); ///true
NSLog(@"log:%d",(0 & 0) && YES); ///false
NSLog(@"log:%d",(1 & 1) && YES); ///true
NSLog(@"log:%d",(1<<1 & 1<<1) && YES); ///true
NSLog(@"log:%d",(1<<2 & 1<<2) && YES); ///true
Xamarin.iosでこれを行う方法は次のとおりです。
public class NotificationUtils
{
public static bool AreNotificationsEnabled ()
{
var settings = UIApplication.SharedApplication.CurrentUserNotificationSettings;
var types = settings.Types;
return types != UIUserNotificationType.None;
}
}
IOS 10以降をサポートしている場合は、UNUserNotificationCenterメソッドのみを使用してください。