我想知道我的代码是否在parse.com中获取数组并将其正确添加到我的NSMutableArray中。
在ViewdidLoad中:
self.alreadySharedWith = [NSMutableArray array];
//detailId contains the current posts objectId.
PFQuery *currentPostSharedWith = [PFQuery queryWithClassName:@"Posts"];
[currentPostSharedWith getObjectInBackgroundWithId:detailId block:^(PFObject *object, NSError *error) {
self.alreadySharedWith = [NSMutableArray arrayWithObjects:object[@"sharedWithUsers"], nil];
NSLog(@"These are already shared: %@", self.alreadySharedWith);
}];
这是做什么的: 获取已共享当前用户帖子的所有用户的objectId。 (当前用户可以与其他用户共享帖子)
MY NSLog显示:
这些已经分享:( ( Vf5zOl2DiR, LMiQK016A5, 2O906caJgJ ) )
但是当我尝试检查我的hasSharedWith中是否存在Vf5zOl2DiR时,我得不到任何结果。为什么会这样?
我如何检查数组中的对象。
- (void)checkArray:(id)sender{
if ([self.alreadySharedWith containsObject:@"Vf5zOl2DiR"]) {
NSLog(@"Found it!");
}
}
我的日志没有显示任何内容。
答案 0 :(得分:1)
当您填充self.alreadySharedWith
时,看起来您正在将数组放入数组中。也许尝试改变(在viewDidLoad
)
self.alreadySharedWith = [NSMutableArray arrayWithObjects:object[@"sharedWithUsers"], nil];
到
self.alreadySharedWith = (NSMutableArray *)object[@"sharedWithUsers"];