转自:http://my.oschina.net/u/1025290/blog/300037#ifndef UI_DEFINITIONS#define UI_DEFINITIONS#pragma mark UI相关常量//导航栏高度#define CONTENT_NAVIGATIONBAR_HEIG...
分类:
移动开发 时间:
2015-07-13 15:30:13
阅读次数:
277
其一屏幕原点坐标 (x ,y) 受 self.navigationController.navigationBar 的setTranslucent (BOOL) 属性控制在 iOS7 以后 translucent 属性默认为 YES 该属性含义是 毛玻璃 半透明效果 YES 起始 坐标 为屏幕顶.....
分类:
移动开发 时间:
2015-07-10 13:16:54
阅读次数:
160
UITableView 继承于UIScrollView
所以UIScrollView 的代理方法同样适用于UITableView 中
隐藏导航栏的方法为:self.navigationController.navigationBar.hidden = YES;所以我们只有通过滚动的代理方法监测滚动视图的滚动方向来控制导航栏显示还是隐藏即可:
通过实现UIScrollView的代理方法来操作:...
分类:
移动开发 时间:
2015-07-09 18:05:52
阅读次数:
403
如果是storyboard 直接embed一个导航栏,然后在新出现的导航栏 选属性 选一下颜色就可以了
代码实现背景颜色修改:self.navigationController.navigationBar.barTintColor = [UIColor blueColor];
代码实现背景图片修改:当然在属性里面也是可以添加修改的[self.navi...
分类:
移动开发 时间:
2015-07-07 16:50:54
阅读次数:
122
UIBarButtonItem *updateButton = [[UIBarButtonItem alloc] initWithTitle:@"修改" style:UIBarButtonItemStylePlain target:self action:@selector(updateInfo)]...
分类:
其他好文 时间:
2015-07-06 14:11:49
阅读次数:
109
一、问题现象1、用户直观看到的现象是黑屏。2、出问题时StatusBar、NavigationBar和墙纸消失。3、大部分发生在FOTA重启之后,出现概率很低。Platform:MSM8916Android版本:5.0.2LBuildType:user系统软件版本:VA6V+L5V0系统RAM:1GB参考机行为:1、5.0L的Nexus4和5.1L的Nexus5都没有重现此问题。二、解决方案通过初...
分类:
移动开发 时间:
2015-07-02 21:08:26
阅读次数:
287
self.navigationController.navigationBar.titleTextAttributes = [NSDictionary
dictionaryWithObjectsAndKeys:[UIFont
systemFontOfSize:10.0f],
NSFontAttributeName, nil];...
分类:
移动开发 时间:
2015-06-26 15:01:14
阅读次数:
116
这个问题曾经困扰过我。现在我给出正解。- (void)viewWillAppear:(BOOL)animated {[super viewWillAppear:animated]; [self.navigationController setNavigationBarHidden:YES anima...
分类:
移动开发 时间:
2015-06-26 10:38:39
阅读次数:
170
三行代码轻松实现透明navigationBar: [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault]; [self.navigat.....
分类:
其他好文 时间:
2015-06-24 18:21:16
阅读次数:
124
edgesForExtendedLayout是一个类型为UIExtendedEdge的属性,指定边缘要延伸的方向。因为iOS7鼓励全屏布局,它的默认值很自然地是UIRectEdgeAll,四周边缘均延伸,就是说,如果即使视图中上有navigationBar,下有tabBar,那么视图仍会延伸覆盖到四...
分类:
移动开发 时间:
2015-06-24 18:11:43
阅读次数:
134