iOS巅峰之解决隐藏tabbar后原位置无法响应点击事件的问题

- (void)viewWillDisappear:(BOOL)animated

{

    [super viewWillDisappear:animated];

    NSLog(@"--%f", kScreenHeight);

 // 返回后还要恢复   self.tabBarController.tabBar.frame = CGRectMake(0, kScreenHeight - 49, kScreenWidth, 49);

    

}




- (void)viewWillAppear:(BOOL)animated

{

    [super viewWillAppear:animated];

    // 写这个就可以解决

    self.tabBarController.tabBar.frame = CGRectZero;

    

}



你可能感兴趣的:(iOS,hidden,点击事件)