美文网首页Swift&Objective-CiOS DeveloperiOS技术专题
UINavigationController与TabBar的小问

UINavigationController与TabBar的小问

作者: 大一号 | 来源:发表于2016-08-10 19:52 被阅读73次

    UINavigationController与MPMoviePlayerController:

    我们在播放视频的时�, 在要使用MPMoviePlayerController播放视频,时

    不要进行以下设置:

    self.navigationController.navigationBar.translucent = NO;

    否则会使MPMoviePlayerController的播放,暂停等控件消失, 如图:

    而将该属性设置为:

    self.navigationController.navigationBar.translucent = YES;

    就会出现下图所显示的:

    注:translucent默认值为NO, 如果将barStyle的设置为UIBarStyleBlackTranslucent时, translucent会变为YES.

    TabBar:

    在Push页面时隐藏tabBar, Pop回来时显示tabBar,可以在跳转页面时的按下面的代码写:

    self.hidesBottomBarWhenPushed =YES;

    [self.navigationController pushViewController:视图控制器 animated:YES];

    self.hidesBottomBarWhenPushed =NO;

    相关文章

      网友评论

        本文标题:UINavigationController与TabBar的小问

        本文链接:https://www.haomeiwen.com/subject/mwyjsttx.html