“apple-mobile-web-app-status-bar-style”作用是控制状态栏显示样式(默认样)具体效果如下:status-bar-style:blackstatus-bar-style:black-translucent
分类:
移动开发 时间:
2015-11-16 15:27:18
阅读次数:
356
ios开发中经常碰到各种需求,比如要求导航栏的颜色和self.view的颜色一样,当我们直接设置navigationBar的颜色和view一样时,我们会发现navigationBar还会有一条分割线留下,本文就是介绍怎么隐藏导航栏底部的分割线的。第一种方法:不会影响导航栏translucent 半透...
分类:
移动开发 时间:
2015-10-19 17:13:43
阅读次数:
1182
还是在苹果的 View Controller Catalog for iOS 文章中找到答案。文中提到了两点:1、If the navigation bar or toolbar are visible but not translucent, it does not matter if the v...
分类:
其他好文 时间:
2015-10-16 00:57:55
阅读次数:
202
/* 配置navigation bar外观开始 */ self.navigationBar.translucent = YES; self.navigationBar.titleTextAttributes = [NSDictionary dictionaryWithObject:[UICol...
分类:
其他好文 时间:
2015-10-13 00:07:13
阅读次数:
161
方法一、在Activity的onCreate中添加如下代码getWindow().setFormat(PixelFormat.TRANSLUCENT); reference to : http://www.jb51.net/article/72719.htm
分类:
移动开发 时间:
2015-09-30 12:36:25
阅读次数:
489
一、概述 ? ? ? ?近期注意到QQ新版使用了沉浸式状态栏,ok,先声明一下:本篇博客效果下图: ? ? ? ?关于这个状态栏变色到底叫「Immersive Mode」/「Translucent Bars」有兴趣可以去了解下。 ? ? ...
分类:
移动开发 时间:
2015-09-27 15:02:44
阅读次数:
299
首先设置导航栏透明属性的代码是:self.navigationController.navigationBar.translucent = YES;默认情况下是YES,就是导航栏是透明的,于是我设置了约束之后是这样的看出来不对的地方没 ,就是我的界面上半部分被挡住了当设置属性为NO时 也就是不让导航...
分类:
移动开发 时间:
2015-09-25 16:16:15
阅读次数:
249
转载请标明出处:
http://blog.csdn.net/lmj623565791/article/details/48649563;
本文出自:【张鸿洋的博客】
一、概述近期注意到QQ新版使用了沉浸式状态栏,ok,先声明一下:本篇博客效果下图:关于这个状态栏变色到底叫「Immersive Mode」/「Translucent Bars」有兴趣可以去 为什么在国内会有很多用户把 ?透明...
分类:
移动开发 时间:
2015-09-22 10:22:25
阅读次数:
314
在ScrollView里加子界面..直接上代码了 self.navigationController.navigationBar.translucent = NO; FirstTableViewController *firstVC = [[FirstTableViewController...
分类:
其他好文 时间:
2015-09-15 12:40:00
阅读次数:
148
//设置全透明方式一、完全不用图片(iOS7之后有效)[self.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];self.navigationBar.translucent = YE...
分类:
其他好文 时间:
2015-09-11 22:02:33
阅读次数:
216