在我的视图控制器中,我有一个标签,它具有由 Parse.com 的 PFQuery 调用的计数器数据的功能。这些数据可能随时更改。
即使用户不在应用程序中航行,我也需要在数据浏览器中的数据更改时自动更新此标签。
假设我需要某种自动重新加载 TableView 的标签。我能怎么做?有谁知道正确的方法?
在我的视图控制器中,我有一个标签,它具有由 Parse.com 的 PFQuery 调用的计数器数据的功能。这些数据可能随时更改。
即使用户不在应用程序中航行,我也需要在数据浏览器中的数据更改时自动更新此标签。
假设我需要某种自动重新加载 TableView 的标签。我能怎么做?有谁知道正确的方法?
这很简单,假设你pfLabel
的单元格中有一个。
在以下委托方法中实现您的查询:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
..................
// Do stuff here.
PFQuery *yourQuery = [PFQuery queryWithClassName:@"YOUR_PARSE_CLASS_NAME"];
// Implement your query constraint here, after that, get your desired data and show it using your desired label
[yourQuery findObjecsInBackgroundWithBlock:^(NSString* obj) {
pfLabel.text = obj;
}];
// Congrat, you just have your label asynchronously showed your parse data.
.....................
}