自动重新加载UiLabel数据

时间:2013-10-24 15:17:50

标签: ios uilabel parse-platform reloaddata

在我的视图控制器中,我有一个标签,它具有由Parse.com的PFQuery调用的计数器数据功能。这些数据可能随时发生变化。

即使用户没有在应用程序中航行,我也需要在databrowser中更改数据时自动更新此标签。

假设我需要对TableView进行某种自动重新加载标签。我能怎么做?有谁知道正确的方法?

1 个答案:

答案 0 :(得分:1)

这很简单,假设您的单元格中有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.
.....................
}