我有ViewController
并且由于某些原因我必须从 AppDelegate.m 设置 label.text 我该怎么做?
我试过这段代码但没有成功:
- (void)applicationWillEnterForeground:(UIApplication *)application
{
HomeViewController *home = [[HomeViewController alloc] init];
home.dateCreatedLabel.text = @"date createdddd";
}
我必须把它放在 AppDelegate 中的原因是因为我从网站获取 JSON,我必须这样做applicationWillEnterForeground:
以检查每次更新,我解决了更新核心数据但没有如何更改 label.text 的问题。
或者我可以如何强制HomeViewController
刷新?