在Parse Local Datastore中,如何对任何引脚名称执行查询?

时间:2015-02-03 13:22:16

标签: parse-platform pinning local-datastore

每当你固定一个对象时,该对象总是隐式或显式([object pin*][object pin*WithName:@"pin name"],其中*是一个可选的InBackground)与一个引脚名称相关联 - {默认情况下为{1}}或用户提供的引脚名称。

查询时,类似地,您隐式或明确地提供要查询的引脚名称。但是,我想知道本地存储的所有对象,而不必知道系统上的所有引脚名称。

我怎么能实现这个目标?

1 个答案:

答案 0 :(得分:0)

我想查询任何引脚,只需使用fromLocalDatastore即可。它的评论说:

/*!
 @abstract Change the source of this query to all pinned objects.

 @warning Requires Local Datastore to be enabled.

 @returns The same instance of `PFQuery` as the receiver. This allows method chaining.

 @see cachePolicy
 */
- (instancetype)fromLocalDatastore;