作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发使用 Parse 一对一推送通知的应用程序。
我为此使用安装类,但我无法在安装类中应用更新或删除查询
上图中有多个同一个USERID的条目。
我想检查 USERID 是否已经在安装类中,只需更新该列即可。
下面是我的代码,我在其中获取安装类的详细信息并使用 USERID 进行查询。
PFInstallation *installation = [PFInstallation currentInstallation];
NSLog(@"%@",installation);
PFQuery *query = [PFInstallation query ];
[query whereKey:@"USERID" equalTo:getUserId];
但不知道我必须使用哪个代码来进行更新查询。
如有任何帮助,我们将不胜感激。
最佳答案
首先,检查用户是否在场:-
BOOL isFound=FALSE;
PFQuery *query = [PFInstallation query ];
[query whereKey:@"USERID" equalTo:getUserId];
NSError *error=nil;
NSArray *arrayTest=[query findObjects:&error];
if(!error)
{
if([arrayTest count]>0)
{
isFound=TRUE;
}
}
其次,如果用户发现更新安装对象:-
if(isFound)
{
PFInstallation *installation = [PFInstallation currentInstallation];
[installation setObject:@"whatever you want to set" forKey:@"ColumnName"];
[installation saveInBackground];
}
关于ios - 如何在 Parse 的安装类中应用更新删除查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35125152/
我是一名优秀的程序员,十分优秀!