2016-07-14 34 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

是的,它應該在AppDelegate中的@implementation中。

下面是使用PushNotificationIOS My AppDeligate.m

我的應用程序AppDelegate.m