gpt4 book ai didi

ios - 解析以下 PFUser

转载 作者:行者123 更新时间:2023-11-29 01:22:13 25 4
gpt4 key购买 nike

我正在尝试在我的 ios9 项目上进行跟随解析操作,但在从中检索 PFUser 时遇到了一些问题解析使用 objectId 任何人都可以帮助我(问题是将当前用户的用户 ID 添加到后面的用户)

- (IBAction)followButtonAction:(id)sender {

PFQuery * query = [PFUser query];
[query whereKey:@"objectId" equalTo:_a.userId];
NSArray *objects = [query findObjects];
PFUser *user= objects.firstObject;

//add the user ID for the cell we are following to the array of followed items in the user class in parse
[[PFUser currentUser] addUniqueObject:_a.userId forKey:@"followed"];
[[PFUser currentUser] saveInBackground];

//add the user ID to the user that the user followed
[user addUniqueObject:[PFUser currentUser].objectId forKey:@"followers"];
[user saveInBackground];
}

最佳答案

假设您的问题是关于长时间运行的操作(根据您的评论):

您的查询正在主线程上执行,因为您调用了[query findObjects]。请改用 findObjectsInBackgroundWithBlock,并将其后的所有代码放入回调内。

关于ios - 解析以下 PFUser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34463896/

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