-
- 数据服务
- Android SDK
- iOS SDK
- 小程序
- Cocos2D-X
- C# SDK
- GO
- JavaScript
- PHP
- RESTful
-
- 云函数
- Android SDK
- iOS SDK
- Java 云函数
- JavaScript
- C#
- PHP
- RESTful
- Web
-
- 支付服务
- Android SDK
- iOS SDK
- RESTful
-
- 短信服务
- Android SDK
- iOS SDK
- JavaScript
- PHP
- RESTful
-
- IM服务
- Android SDK
- iOS SDK
-
- 推送服务
- Android SDK
- iOS SDK
- JavaScript
- PHP
- RESTful
-
- 其他
- 常见问题
- 错误码
- 数据安全
- BQL
- 知识库
- 下载
- 搜索
常见问题 - 平台常见问题
- 数据服务
- 数据服务Android
- 数据服务iOS
- 数据服务Cocos2d-X
- 数据服务C#
- 数据服务JavaScript
- 数据服务PHP
- 数据服务RESTful
- 云函数
- 云函数iOS
- IM服务
- IM服务Android
- IM服务iOS
- 推送服务
- 推送服务Android
- 推送服务iOS
- iOS 常见问题
- 支付服务
- 推送服务Android
- 短信服务
- 短信服务
# iOS 常见问题 Q:按照设制好了IOS推送,推送后显示状态为“发送至APNS”,但前面写着“推送0条”,此时,手机也未接收到信息,是为什么? A: 1.看看Installation表是否有设备信息; 2.Bmob后台中是否把推送证书添加上去(不能加密); 3.你先尝试推送给所有的真实手机。 - - - Q:如何用 BmobPush发送原始apns报文? A:要发送原始信息的可以使用-(void)setData:(NSDictionary )data;方法 - - - Q:在iOS中 在代码中如何创建一个空表 只包含各列的属性 而不创建具体的一条数据。 A:参考代码
- - - Q:消息推送的条件查询(根据特定的查询条件进行推送)能在自己创建的表格中进行查询条件推送 A:只能使用自带的installation表来查询。 - - - Q:在installation 表中创立新的列无法添加进去数据
BmobInstallation
ins = [BmobInstallation currentInstallation];
[ins saveInBackgroundWithResultBlock:^(BOOL isSuccessful, NSError error) {
if (error) {
NSLog(@"%@",error);
} else {
NSLog(@"success");
NSLog(@"%@",ins.objectId);
}
}];
A:确实是无法直接这么加的,建议使用channel来实现业务需求 - - - Q:消息推送的条件查询(根据特定的查询条件进行推送)能在自己创建的表格中进行查询条件推送吗!!! A:不可以,只能使用自带的installation表来查询 Copyright © 2017 Bmob, Maintained by the Bmob Support.
BmobInstallation
currentIntallation = [BmobInstallation currentInstallation];
[currentIntallation setObject:@"123" forKey:@"classes"];
[currentIntallation saveInBackground];
搜索
请输入您要搜索的内容
Keyboard Shortcuts
Keys | Action |
---|---|
? | Open this help |
← | Previous page |
→ | Next page |
s | Search |
[返回
旧版](https://docs.bmob.cn/data/Android/a_faststart/doc/index.html)