ios8下推送,先记录下来

来源:互联网 发布:工作计划安排软件 编辑:程序博客网 时间:2024/06/04 17:52
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    // Override point for customization after application launch.        if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)    {        [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings                                                                             settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge)                                                                             categories:nil]];                        [[UIApplication sharedApplication] registerForRemoteNotifications];    }    else    {        //这里还是原来的代码        [[UIApplication sharedApplication] registerForRemoteNotificationTypes:         (UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert)];    }        return YES;}#ifdef __IPHONE_8_0- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings{    //register to receive notifications    [application registerForRemoteNotifications];}- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo completionHandler:(void(^)())completionHandler{    //handle the actions    if ([identifier isEqualToString:@"declineAction"]){    }    else if ([identifier isEqualToString:@"answerAction"]){    }}#endif- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken{    NSLog(@"%@", deviceToken);}-(void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error{    NSLog(@"%@", error);}- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo{    // 处理推送消息    NSLog(@"userinfo:%@",userInfo);        NSLog(@"收到推送消息:%@",[[userInfo objectForKey:@"aps"] objectForKey:@"alert"]);}

主要就是先要获取 SSL.苹果账号上面你不是先创建的应用么.然后把推送打开.,

就可以去拿到 推送的证书.一共两个.开发者和发布者的.

生成了之后下载下来.然后导出两个文件.通过openSSL生成两个 pem.,


0 0
原创粉丝点击