İOS 8'de UILocalNotifications almak için Kullanıcı İznini İsteyin


115

Bunu kullanarak Uygulama Temsilcisinde yerel bildirimler ayarladım:

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    UILocalNotification *notification = [[UILocalNotification alloc]init];
    [notification setAlertBody:@"Watch the Latest Episode of CCA-TV"];
    [notification setFireDate:[NSDate dateWithTimeIntervalSinceNow:5]];
    [notification setTimeZone:[NSTimeZone defaultTimeZone]];
    [application setScheduledLocalNotifications:[NSArray arrayWithObject:notification]];
}

Uygulamayı çalıştırıp ardından çıktığımda şunu söyleyen bir hata alıyorum:

2014-06-07 11: 14: 16.663 CCA-TV [735: 149070] Yerel bir bildirim planlanmaya çalışılıyor {yangın tarihi = 7 Haziran 2014 Cumartesi 11:14:21 Pasifik Yaz Saati, saat dilimi = America / Los_Angeles (PDT) ofset -25200 (Gün Işığı), tekrar aralığı = 0, tekrar sayısı = UILocalNotificationInfiniteRepeatCount, sonraki ateşleme tarihi = 7 Haziran 2014, 11:14:21 Pasifik Yaz Saati, kullanıcı bilgisi = (boş)} bir uyarı ile ancak kullanıcıdan uyarıları görüntüleme izni almamış

Uyarıları görüntülemek için gerekli izni nasıl alabilirim?


1
Sanırım uygulama izni bir kez reddetti, Ayarlar'dan etkinleştirmeyi deneyebilirsiniz. Ancak bu arada, UILocalNotification'ın kullanıcı iznine ihtiyacı yok ..
iphonic

Deneyin registerUserNotificationSettings. İOS 8 olsaydı, bu konu sorunuzu yanıtlardı. Ama, bir göz atalım - stackoverflow.com/questions/24006998/…
raurora

Yanıtlar:


237

İOS 8'den bu yana, uygulamanızdan gelen bildirimleri göstermek için kullanıcıdan izin istemeniz gerekir, bu hem uzak / push hem de yerel bildirimler için geçerlidir. Swift'de bunu şu şekilde yapabilirsiniz,

Swift 2.0 Güncellemesi

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
    // Override point for customization after application launch.
    if(UIApplication.instancesRespondToSelector(Selector("registerUserNotificationSettings:")))
    {
        let notificationCategory:UIMutableUserNotificationCategory = UIMutableUserNotificationCategory()
        notificationCategory.identifier = "INVITE_CATEGORY"
        notificationCategory.setActions([replyAction], forContext: UIUserNotificationActionContext.Default)

        //registerting for the notification.
        application.registerUserNotificationSettings(UIUserNotificationSettings(forTypes:[.Sound, .Alert, .Badge], categories: nil))
    }
    else
    {
       //do iOS 7 stuff, which is pretty much nothing for local notifications.
    }
    return true
}

Swift 3.2

if(UIApplication.instancesRespond(to: #selector(UIApplication.registerUserNotificationSettings(_:)))){
     let notificationCategory:UIMutableUserNotificationCategory = UIMutableUserNotificationCategory()
     notificationCategory.identifier = "INVITE_CATEGORY"
     notificationCategory.setActions([replyAction], forContext: UIUserNotificationActionContext.Default)

     //registerting for the notification.
        application.registerUserNotificationSettings(UIUserNotificationSettings(types:[.sound, .alert, .badge], categories: nil))
}
else{
        //do iOS 7 stuff, which is pretty much nothing for local notifications.
    }

Objective C sözdizimi de çok benzer.

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    if ([UIApplication instancesRespondToSelector:@selector(registerUserNotificationSettings:)]){
        [application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:nil]];
    }
    // Override point for customization after application launch.
    return YES;
}

Şu anda kayıtlı bildirim türlerini kontrol etmek için UIApplication sınıfının yöntemini kullanabilirsiniz,

- (UIUserNotificationSettings *)currentUserNotificationSettings

Dolayısıyla, kullanıcı uygulamanıza hayır dediyse, bu işlev herhangi bir türü olmayan bir ayar döndürmelidir.

Bununla ilgili bir eğitim yazdım, burada görebilirsiniz .


1
Kullanıcı izni reddederse, bunu daha sonra programatik olarak nasıl belirleyeceksiniz?
jjxtra

@satheeshwaran Bu kodu kullandığımda, iOS8 ile simülatör ile iyi çalışıyor. İOS7'den başlayarak uygulamamın dağıtım hedefini istedim. Bir iOS7 cihazda bu kodu çalıştırdığınızda yani, ben bu hatayı alıyorum: dyld: Symbol not found: _OBJC_CLASS_$_UIUserNotificationSettings. Swift'de iOS7'de çalışmak için kullanıcıdan izin istemenin başka bir yolu var mı? lütfen yardım et.
Raghavendra

@Raghav UIUserNotificationSettings yalnızca iOS 8'de kullanılabilir ve karşı karşıya olduğunuz şey doğru davranış. Bunu iOS 7'de kullanmamalısınız.
Satheeshwaran

1
İOS sürümü UIDevice'i kontrol etmek için -1. stackoverflow.com/a/25735175/1226304 answer, bunu yapmak için daha iyi bir yaklaşıma sahiptir.
derpoliuk

3
@derpoliuk Herkesin yararına cevap olarak güncellendi, tamam mı?
Satheeshwaran

38

Bu kodu, bildirimleri ilk olarak programlayacağınız görünüm denetleyicisine yerleştirin (bunları başlangıçta programlarsanız, o zaman olacaktır application:didFinishLaunchingWithOptions:):

if ([UIApplication instancesRespondToSelector:@selector(registerUserNotificationSettings:)]) {
    [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeSound categories:nil]];
}

Swift'de:

if(UIApplication.instancesRespondToSelector(Selector("registerUserNotificationSettings:"))) {
    UIApplication.sharedApplication().registerUserNotificationSettings(UIUserNotificationSettings(forTypes: .Alert | .Sound, categories: nil))
}

Sistem sürüm numarasına göre test eden çözümler yetersizdir ve hataya açıktır.


Ben kullanırsınız application.respondsToSelector(Selector("registerUserNotificationSettings"))veif ([application respondsToSelector:@selector(registerUserNotificationSettings:)])
derpoliuk

7
Bunun nedeni, onu application:didFinishLaunchingWithOptions:kullanışlı bir applicationnesne sağlayan içinde kullanmanızdır :)
KPM

18

Bunu Objective-C için deneyin:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:    (NSDictionary *)launchOptions
{
// are you running on iOS8?
if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) 
  {
    UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeBadge|UIUserNotificationTypeAlert|UIUserNotificationTypeSound) categories:nil];
    [application registerUserNotificationSettings:settings];
  } 
else // iOS 7 or earlier
  {
    UIRemoteNotificationType myTypes = UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound;
    [application registerForRemoteNotificationTypes:myTypes];
  }
}

Swift için:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
// Override point for customization after application launch.
 if(UIApplication.instancesRespondToSelector(Selector("registerUserNotificationSettings:")))
 {
    application.registerUserNotificationSettings(UIUserNotificationSettings(forTypes: UIUserNotificationType.Sound | UIUserNotificationType.Alert | UIUserNotificationType.Badge, categories: nil))
 }
 else
 {
    //
 }
return true
}

5

Ben de aynı problemle karşılaştım. Görünüşe göre iOS 8'de ek bir adım atmamız gerekiyor, genellikle içeride yapılır:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { /*...*/ }

Geriye dönük olarak uyumlu olmasını istiyorsanız bu kodu kullanabilirsiniz:

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 80000
    if ([UIApplication instancesRespondToSelector:@selector(registerUserNotificationSettings:)])
    {
        [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil]];
    }
#endif

Sistem kararı hatırlayacak ve yalnızca bir kez soracaktır.


Eğer ([[UIDevice currentDevice] .systemVersion floatValue] <10)
Mehul Chuahan

1

** iOS8 + için üç düğmeli Yerel Bildirim

// Düğme: ALDIM, DAHA SONRA HATIRLAT, ATLA **

        let completeAction = UIMutableUserNotificationAction()
        completeAction.identifier = "COMPLETE_TODO"
        completeAction.title = "I TOOK IT"
        completeAction.activationMode = .Background
        completeAction.destructive = true
        completeAction.authenticationRequired = false

        let remindAction = UIMutableUserNotificationAction()
        remindAction.identifier = "REMIND_TODO"
        remindAction.title = "REMIND LATER"
        remindAction.activationMode = .Background
        remindAction.destructive = false
        //  remindAction.authenticationRequired = false

        let skipAction = UIMutableUserNotificationAction()
        skipAction.identifier = "SKIP_TODO"
        skipAction.title = "SKIP IT"
        skipAction.activationMode = .Background
        skipAction.destructive = false
        skipAction.authenticationRequired = false


        let todoCategory = UIMutableUserNotificationCategory()
        todoCategory.identifier = "TODO_CATEGORY"
        todoCategory.setActions([completeAction, remindAction, skipAction], forContext: .Default)
        todoCategory.setActions([completeAction,remindAction,skipAction], forContext: .Minimal)


        if application.respondsToSelector("isRegisteredForRemoteNotifications")
        {

            let categories = NSSet(array: [todoCategory,todoVideoCategory])
            let types:UIUserNotificationType = ([.Alert, .Sound, .Badge])

            let settings:UIUserNotificationSettings = UIUserNotificationSettings(forTypes: types, categories: categories as? Set<UIUserNotificationCategory>)

            application.registerUserNotificationSettings(settings)
            application.registerForRemoteNotifications()

        }

    }
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.