应用程序变为活动状态时刷新tableView

时间:2011-09-10 22:46:31

标签: iphone uitableview uitabbarcontroller reloaddata application-restart

我知道有几个问题与此类似,但我认为我的问题有点不同,所以请耐心等待。

我有一个标签式视图应用,其中表格视图设置在3个标签中的2个中。我希望能够在应用程序唤醒时刷新所选选项卡的表视图。我已经尝试使用通知中心告诉我的标签刷新,但它使另一个标签崩溃,因为它正在从我的进度中窃取视图。我会在这里提供一些代码,希望我能找到适合我的解决方案。

Tab 1 ViewController

- (void)viewDidLoad {

    // becomeActive just calls viewDidAppear:
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(becomeActive:)
                                                 name:UIApplicationDidBecomeActiveNotification
                                               object:nil];

    [super viewDidLoad];

}

-(void)viewDidAppear:(BOOL)animated {
    HUD = [[MBProgressHUD alloc] initWithView:self.view];
    [self.view addSubview:HUD];

    HUD.delegate = self;
    HUD.labelText = @"Updating";
    HUD.detailsLabelText = @"Please Wait";

    [HUD showWhileExecuting:@selector(refreshData) onTarget:self withObject:nil animated:YES];

}

Tab 2 ViewController

- (void)viewDidLoad
{

    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    self.navigationItem.title = [defaults valueForKey:@"companyName"];

    self.view.backgroundColor = background;

    tableView.backgroundColor = [UIColor clearColor];
    tableView.opaque = YES;
    tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

    // becomeActive just calls viewDidAppear
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(becomeActive:)
                                                 name:UIApplicationDidBecomeActiveNotification
                                               object:nil];


    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.

    if (_refreshHeaderView == nil) {

        EGORefreshTableHeaderView *view = [[EGORefreshTableHeaderView alloc] initWithFrame:CGRectMake(0.0f, 0.0f - self.tableView.bounds.size.height, self.view.frame.size.width, self.tableView.bounds.size.height)];
        view.delegate = self;
        [self.tableView addSubview:view];
        _refreshHeaderView = view;
        [view release];

    }

    //  update the last update date
    [_refreshHeaderView refreshLastUpdatedDate];

}

-(void)viewDidAppear:(BOOL)animated {
    HUD = [[MBProgressHUD alloc] initWithView:self.view];
    [self.view addSubview:HUD];
    HUD.delegate = self;
    HUD.labelText = @"Updating";
    HUD.detailsLabelText = @"Please Wait";

    [HUD showWhileExecuting:@selector(updateBoard) onTarget:self withObject:nil animated:YES];

    //  update the last update date
    [_refreshHeaderView refreshLastUpdatedDate];

}

使用此设置,我的应用程序将刷新选项卡2,假设选项卡2是关闭应用程序之前打开的最后一个选项卡。如果我在关闭时切换到选项卡1,则在重新启动应用程序时,通知首先调用选项卡2并从我的进度hud中删除视图,因此当我尝试调用viewDidAppear方法时,视图为null并且应用程序崩溃。我要么想弄清楚如何更好地实现通知中心,这样就不会使其他选项卡崩溃,或者在应用程序变为活动状态时整体刷新更好的方式。期待一个很好的答案。提前谢谢。

修改 当我使用此设置运行时,它会在MBProgressHUD内部中止

- (id)initWithView:(UIView *)view {
    // Let's check if the view is nil (this is a common error when using the windw initializer above)
    if (!view) {
        [NSException raise:@"MBProgressHUDViewIsNillException" 
                    format:@"The view used in the MBProgressHUD initializer is nil."]; // <-- Aborts on this line, so they know it can happen
    }
    id me = [self initWithFrame:view.bounds];
    // We need to take care of rotation ourselfs if we're adding the HUD to a window
    if ([view isKindOfClass:[UIWindow class]]) {
        [self setTransformForCurrentOrientation:NO];
    }
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange:) 
                                                 name:UIDeviceOrientationDidChangeNotification object:nil];

    return me;
}

2 个答案:

答案 0 :(得分:1)

这里的主要问题是所有视图都会收到通知,无论它们是否会出现。好的做法是只通知那些将出现在屏幕上的视图

您可以使用应用程序委托的(void)applicationWillEnterForeground:(UIApplication *)application方法来处理应用程序中的更改而不是通知。

  1. 如果问题与屏幕上的刷新标签有关,那么跟踪AppDelegate中标签的变化,并在应用程序进入前景时使用该标签会更好地了解通知。

  2. 其他选项是在tabbarcontroller中使用viewWillAppear方法。调用此方法时,您可以刷新当前选项卡。

答案 1 :(得分:0)

真的没有太多可以帮助回答这个问题。 @Learner给了我一个想法,最终导致了我如何解决这个问题。

由于我所有的逻辑工作,问题是阻止HUD从另一个视频中窃取视图,因为它们在响应通知事件时都被调用。因此,在两个选项卡的-becomeActive事件中,我添加了一个检查,如果selectedIndex与当前选项卡匹配,如果没有,则不刷新。工作就像一个魅力。

-(void)becomeActive:(NSNotification *)notification {
    // only respond if the selected tab is our current tab
    if (self.tabBarController.selectedIndex == 1) { // just set the number to your tab index
        [self viewDidAppear:YES];
    }

}