2017-06-17 72 views
0

我试图在我的应用程序中实现推送通知。我正在使用APN认证密钥。到目前为止,我发现的每个指南都有不赞成使用的方法,或者它在Swift中。我很感兴趣像this one但目的C.无法让推送通知工作

我到目前为止,做内部AppDelegate.m一个指南:

@import Firebase; 

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

    [FIRApp configure]; 

    NSDictionary *userInfo = [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey]; 
    if (userInfo) { 
     [self application:application didReceiveRemoteNotification:userInfo]; 
    } 

    UIUserNotificationType allNotificationTypes = 
    (UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge); 
    UIUserNotificationSettings *settings = 
    [UIUserNotificationSettings settingsForTypes:allNotificationTypes categories:nil]; 
    [[UIApplication sharedApplication] registerUserNotificationSettings:settings]; 
    [[UIApplication sharedApplication] registerForRemoteNotifications]; 

    return YES; 
} 


- (void)application:(UIApplication *)application 
didReceiveRemoteNotification:(NSDictionary *)userInfo { 



    // Perform different operations depending on the scenario 
    if (application.applicationState == UIApplicationStateInactive) { 

     // Opening the app 
     NSLog(@"Firebase opening app"); 


    } 
    else if (application.applicationState == UIApplicationStateBackground) { 

     // Coming from background 
     NSLog(@"Firebase background"); 

    } 
    else { 

     // Active 
     NSLog(@"Firebase active"); 
    } 

} 

不幸的是,当我从火力点发送一条消息我什么也没得到,没有输出在xcode控制台中,并没有通知。 如果您能指出我正确的方向,我将不胜感激。

回答

0

你不执行火力APN令牌既不是你连接到数据库。为什么不只是像这里执行它firebase example。 你甚至设置了plist和POD库吗?在上面的代码示例中,对于版本8/9的iOS部分只有不推荐使用的代码 - 意味着您可以忽略这些代码行。

+0

正是我需要的。感谢队友 – student

+0

欢迎您。我在自己的最后一个项目中实施了自己,并且100%的工作。顺便说一句,不要忘记在firebase中上传证书(仅适用于iOS,Android不需要它)。我仍然像你一样在Objective-C上 - 喜欢它!格尔茨 –

0

请使用以下方法:

-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler { 
//Do something 
} 

,而不是这样的:

-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo { 
//Do something 
} 

更新:

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

    [FIRApp configure]; 

    UIUserNotificationType allNotificationTypes = 
    (UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge); 
    UIUserNotificationSettings *settings = 
    [UIUserNotificationSettings settingsForTypes:allNotificationTypes categories:nil]; 
    [[UIApplication sharedApplication] registerUserNotificationSettings:settings]; 
    [[UIApplication sharedApplication] registerForRemoteNotifications]; 

if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) 
     { 
     #ifdef __IPHONE_8_0 
     UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeAlert 
                          | UIUserNotificationTypeBadge 
                          | UIUserNotificationTypeSound) categories:nil]; 
     [application registerUserNotificationSettings:settings]; 
     #endif 
     } 
    else 
     { 
     UIRemoteNotificationType myTypes = UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound; 
     [application registerForRemoteNotificationTypes:myTypes]; 
     } 
    return YES; 
} 




-(void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken 
{ 

    [[FIRInstanceID instanceID] setAPNSToken:deviceToken type:FIRInstanceIDAPNSTokenTypeSandbox]; 
} 
+0

什么都没发生 – student

+0

您是否使用'didRegisterForRemoteNotificationsWithDeviceToken'方法? –

+0

不,我应该在哪里以及如何使用它?你有什么参考? – student