我有一个带有五个视图的标签栏应用程序。我需要在应用程序从后台返回时刷新第二个视图,但前提是用户之前在该视图中。
我试过了:
- (id)init
{
self = [super init];
if (self) {
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(reloadThisView:)
name:UIApplicationWillEnterForegroundNotification
object:nil];
// Do some more stuff
}
return self;
}
- (void)reloadThisView:(NSNotification *)notification
{
[self getAllLista];
}
但在这种情况下,我根本不使用,也不知道如何使用init
......
有什么建议吗?