作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我的应用使用 Parse.com 提供大部分服务。主屏幕有一个 PFTableViewController,显示某个类的所有对象。我想将所有这些添加为 NSUserActivity,所以我知道我需要通过 for 循环运行它,但对于我来说,想不出如何通过循环运行类以添加每个项目将类放入 NSUserActivity。
到目前为止,在设置表格之前我有什么。
- (id)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
if (self) {
// The className to query on
self.parseClassName = @"Prayers";
// Whether the built-in pull-to-refresh is enabled
self.pullToRefreshEnabled = YES;
// Whether the built-in pagination is enabled
self.paginationEnabled = YES;
// The number of objects to show per page
self.objectsPerPage = 20;
}
return self;
}
- (PFQuery *)queryForTable {
NSLog(@"QUERY");
PFQuery *query = [PFQuery queryWithClassName:@"Prayers"];
// If no objects are loaded in memory, we look to the cache first to fill the table
// and then subsequently do a query against the network.
if (self.objects.count == 0) {
query.cachePolicy = kPFCachePolicyCacheThenNetwork;
}
[query orderByDescending:@"createdAt"];
return query;
}
最佳答案
似乎没有真正的 API...请引用此链接以获取可能的解决方法:
关于ios - 解析类通过 For 循环运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32835274/
我是一名优秀的程序员,十分优秀!