gpt4 book ai didi

iphone - 在 iPhone 中解析推送通知

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:14:46 25 4
gpt4 key购买 nike

集成 parse iOS 项目中的推送通知。不工作。

这是我的代码:

#ifdef ENABLE_PARSE_PUSH
#import "Parse/Parse.h"
#endif

//in appDelegate didFinishLaunchingWithOptions

#ifdef ENABLE_PARSE_PUSH

// Obtain the installation object for the current device

[Parse setApplicationId:PARSE_APP_ID clientKey:PARSE_APP_SIGNATURE];

PFInstallation *myInstallation = [PFInstallation currentInstallation];

// Save some data
[myInstallation setObject:@"YES" forKey:@"scoreUpdates"];

// Save or Create installation object
[myInstallation saveInBackground];

[application registerForRemoteNotificationTypes:
UIRemoteNotificationTypeBadge |
UIRemoteNotificationTypeAlert |
UIRemoteNotificationTypeSound];
#endif



#ifdef ENABLE_PARSE_PUSH
- (void)application:(UIApplication *)application
didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)newDeviceToken
{
[PFPush storeDeviceToken:newDeviceToken]; // Send parse the device token
// Subscribe this user to the broadcast channel, ""
[PFPush subscribeToChannelInBackground:@"" block:^(BOOL succeeded, NSError *error) {
if (succeeded)
{
//#ifdef DEBUG
//NSLog(@"Successfully subscribed to the broadcast channel.");
//#endif
}
else
{
//#ifdef DEBUG
//NSLog(@"Failed to subscribe to the broadcast channel.");
//#endif
}
}];
}

- (void)application:(UIApplication *)application
didReceiveRemoteNotification:(NSDictionary *)userInfo {
[PFPush handlePush:userInfo];
}

#endif

这是一个similar post对我没有帮助..尝试了所有建议的解决方案。怎么了……已经在 parse.com 中上传了开发推送 SSL。帮助我找到解决方案。

现在来自 parse.com 的测试推送消息未在设备中传送。

最佳答案

您好,您尝试过这个 Parse step by step 教程吗 https://www.parse.com/tutorials/ios-push-notifications

按照教程进行操作,如果您得到堆栈,您可以在此处发帖寻求帮助。

关于iphone - 在 iPhone 中解析推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15781679/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com