您的位置:首页 > 移动开发 > IOS开发

iOS跳转延迟,跳转隐藏tabbar

2016-06-15 10:10 477 查看
  dispatch_async(dispatch_get_main_queue(), ^{
           
DDLogInfo(@"我的收藏");

                self.hidesBottomBarWhenPushed=YES;

            CollectionViewController * collVc=[[CollectionViewController
alloc]initWithNibName:@"CollectionViewController"
bundle:nil];

            [self.navigationController 
pushViewController:collVc animated:YES];

                self.hidesBottomBarWhenPushed=NO;
             });
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息