ios - 在Parse中,如何编写查询以为我提供具有ID列表的所有对象? iOS
<p>我有一些代码需要很长时间才能加载,我想加快速度。<br><br>我的最终目标是通过一组ID来获取对象列表。<br><br>现在,我正在遍历id的字符串数组,并构建用户对象以附加到whereKey,但是想知道是否有更好的方法可以做到这一点。<br><pre><code> NSMutableArray *followingArray = [ init];
for (NSString *userId in c_user.following) {
PFQuery *getUser = ;
FSUser *user = (FSUser *);
;
}
;
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p>编辑:您可以使用用户objectId构建一个指针,然后进行查询。<br><pre><code>NSMutableArray* followingArray = [ init];
for (NSString* userId in c_user.following) {
// build the pointer to the object
PFObject* object = ;
object.objectId = userId;
;
}
;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在Parse中,如何编写查询以为我提供具有ID列表的所有对象? iOS,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32052924/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32052924/
</a>
</p>
页:
[1]