惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
A
About on SuperTechFans
Vercel News
Vercel News
B
Blog
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
D
Docker
V
Visual Studio Blog
博客园 - 叶小钗
The Cloudflare Blog
Jina AI
Jina AI
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏

博客园 - 幽谷清水

ABP .Net Core Entity Framework迁移使用MySql数据库 理解OAuth 2.0 IdentityServer4 中文文档 【转】ASP.NET Core 依赖注入 asp.net core部署到iis中出现 HTTP Error 502.5 - Process Failure的问题 在IIS上部署你的ASP.NET Core 2.1项目 AppBoxPro(权限管理框架--FineUIPro基础版+工厂模式+ADO.NET+存储过程) 阿里云 Windows Server 2012 r2 部署asp.net mvc网站 平坑之旅 tfs 禁止多人签出 Sql Server 向上取整、向下取整、四舍五入取整 微信WeixinJSBridge API Memcached+WebApi记录 iOS8自定义推送显示按钮及推送优化 支付宝友盟编译报错 安装Cocoapods xcode 插件 3.1 - Apps or metadata that mentions the name of any other mobile platform will be rejected 苹果电话、加急 火狐浏览器sqlite插件
控制器隐藏了导航 下页pop 导航位置看到黑条
幽谷清水 · 2016-05-10 · via 博客园 - 幽谷清水

控制器隐藏了导航 下页pop 导航位置看到黑条

解决:

-(void)viewWillDisappear:(BOOL)animated{
    
    [super viewWillDisappear:animated];
    [self.navigationController setNavigationBarHidden:NO animated:NO];
    
}

-(void)viewWillAppear:(BOOL)animated{
    
    [super viewWillAppear:animated];
    [self.navigationController setNavigationBarHidden:YES animated:YES];
    
}

posted @ 2016-05-10 09:19  幽谷清水  阅读(197)  评论(0)    收藏  举报