在enterforeground刷新tableview

时间:2011-10-01 04:23:08

标签: ios uitabbarcontroller

我有一个带有五个视图的标签栏应用程序。我需要在应用程序从后台返回时刷新第二个视图,但前提是用户之前在该视图中。

我试过了:

- (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 ......

有什么建议吗?

0 个答案:

没有答案