2016-07-14 6 views
0

Документация для этого не ясна.Что такое реализация AppDelegate? PushNotificationIOS

https://facebook.github.io/react-native/docs/pushnotificationios.html

И тогда в вашей реализации AppDelegate добавить следующее:

ли со ссылкой на ввод этого кода ниже @implementation AppDelegate так:

#import "RCTPushNotificationManager.h" 
#import "AppDelegate.h" 
#import "RCTRootView.h" 

@implementation AppDelegate 

// Required to register for notifications 
- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings { [RCTPushNotificationManager didRegisterUserNotificationSettings:notificationSettings]; } // Required for the register event. 
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { [RCTPushNotificationManager didRegisterForRemoteNotificationsWithDeviceToken:deviceToken]; } // Required for the notification event. 
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)notification { [RCTPushNotificationManager didReceiveRemoteNotification:notification]; } // Required for the localNotification event. 
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification { [RCTPushNotificationManager didReceiveLocalNotification:notification]; } - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error { NSLog(@"%@", error); } 

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 

{ 
    NSURL *jsCodeLocation; 

    ... 
} 

@end 

Спасибо!

ответ

1

Да, это должно быть внутри @implementation в AppDelegate.

Вот мой AppDelegate.m в приложение, с помощью PushNotificationIOS My AppDeligate.m

Смежные вопросы