我想点击重新加载按钮来更新UILabel。另外,我想在后台更新标签,因为它是从我的网站通过XML获取新数据。当然,在打开应用程序时自动更新标签会很不错。还有我的问题:
当用户手动点击按钮时,我能够很好地工作。但我不明白如何通过“applicationDidBecomeActive”调用我的方法来做同样的事情。我尝试以同样的方式做到这一点,但它显然不起作用,因为我的标签返回为零。
我认为我的理解存在问题,解决方案应该非常简单。感谢您的输入!注意:我是Objective-C的初学者,有时会遇到“简单”的问题。 ; - )
以下是重要代码部分的摘要:
的AppDelegate
- (void)applicationDidBecomeActive:(UIApplication *)application {
[[MyViewController alloc] reloadButtonAction];
}
MyViewController
@synthesize label
- (void)reloadButtonAction {
[self performSelectorInBackground:@selector(updateData) withObject:nil];
}
- (void)updateData {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
// Parse the XML File and save the data via NSUserDefaults
[[XMLParser alloc] parseXMLFileAtURL];
// Update the labels
[self performSelectorOnMainThread:@selector(updateLabels) withObject:nil waitUntilDone:NO];
[pool release];
}
- (void)updateLabels {
NSUserDefaults *variable = [NSUserDefaults standardUserDefaults];
myLabel.text = [variable stringForKey:@"myLabelText"];
// myLabel is nil when calling all of this via AppDelegate
// so no changes to the myLabel are done in that case
// but: it works perfectly when called via button selector (see below)
NSLog(@"%@",myLabel.text);
}
-(void)viewDidLoad {
// Reload button in the center
UIButton *reloadButton = [UIButton buttonWithType:UIBarButtonSystemItemRefresh];
reloadButton.frame = CGRectMake(145,75,30,30);
[reloadButton setTitle:@"" forState:UIControlStateNormal];
[reloadButton addTarget:self action:@selector(reloadButtonAction) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:reloadButton];
}
答案 0 :(得分:3)
首先:
[[MyViewController alloc] reloadButtonAction];
没有意义。您可以在不初始化对象的情况下分配内存。然后你想在它上面调用一个方法。不行 使用实例:
[myViewControllerInstance reloadButtonAction];
在您的app委托中,如果对象包含reload方法,则应该引用rootcontroller实例,使用该实例。
注意: Alloc仅在内存中为一个大小与MyViewController实例大小相对应的对象保留空间。 init方法将填充它。