gpt4 book ai didi

ios - Parse Push Notifications 可以针对特定的 iOS 吗?

转载 作者:行者123 更新时间:2023-11-29 02:35:06 26 4
gpt4 key购买 nike

我在 Parse 的文档中看到推送通知可以针对特定设备(iOS、Android 等)。我想向具有特定 iOS (iOS 8) 的 iOS 设备用户发送通知。这可以实现吗,还是我们仅限于针对一般设备系列?

最佳答案

您可以通过将 osVersion 字段添加到您的 _Installation 类来完成此操作,然后对其进行查询。当您在设备上保存安装时,您可以设置此字段。\

iOS 代码示例:

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
PFInstallation *currentInstallation = [PFInstallation currentInstallation];
[currentInstallation setDeviceTokenFromData:deviceToken];
currentInstallation.channels = @[@"global"];
currentInstallation[@"user"] = [PFUser currentUser];
currentInstallation[@"osVersion"] = [UIDevice currentDevice].systemVersion;
[currentInstallation saveInBackground];
}

关于ios - Parse Push Notifications 可以针对特定的 iOS 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26444851/

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