自定义导航栏按钮 自定义导航栏按钮 添加了UINavigationController后,可以在当前视图控制器修改下一页的返回按钮backBarButtonItem: 方法1. 用系统自带的返回按钮 UIBarButtonItem *leftBarButtonItem = [[UIBarButton ...
分类:
其他好文 时间:
2016-04-17 14:32:26
阅读次数:
123
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"侧栏" style:UIBarButtonItemStylePlain target:self action:@selector(click
分类:
其他好文 时间:
2016-03-10 23:21:25
阅读次数:
187
本文翻译自苹果官方文档《iOS Human Interface Guidelines》——Bars,讲解工具栏的相关注意事项以及工具栏和导航栏按钮的指南...
分类:
移动开发 时间:
2016-03-07 22:41:04
阅读次数:
314
self.navigationController.navigationBar.barTintColor = [UIColor blackColor];self.navigationController.navigationBar.tintColor = [UIColor whiteColor];[...
分类:
移动开发 时间:
2016-01-12 11:37:24
阅读次数:
138
UIButton *releaseButton = [UIButton buttonWithType:UIButtonTypeRoundedRect]; [releaseButton setTitle:@"发布" forState:normal]; [releaseBut...
分类:
移动开发 时间:
2016-01-06 16:07:03
阅读次数:
198
自从IOS7后UINavigationBar的一些属性的行为发生了变化.你可以在下图看到:现在,如果你要修改它们的颜色,用下面的代码:1234self.navigationController.navigationBar.barTintColor=[UIColorblackColor];self.n...
分类:
其他好文 时间:
2015-12-25 16:58:12
阅读次数:
152
暂时记录一个小知识点,因为赶着做项目,后续会慢慢补充self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"侧栏" style:UIBarButtonItemStylePlain target:s...
分类:
移动开发 时间:
2015-12-07 12:20:29
阅读次数:
169
1\在实际编程过程中往往需要自定义导航栏上面的按钮,也就用:- (instancetype)initWithCustomView:(UIView *)customView;但用了这个方法后可能会导致iOS7,8的手势返回失效,解决方法就是在自定义的导航栏的viewDidLoad方法中添加如下代码注意...
分类:
移动开发 时间:
2015-08-13 13:46:38
阅读次数:
182
网站前端优化第一:减少HTTP请求1: 将超链接关联到图片上,例如在导航栏按钮中。如果是以这种形式关联多个带有超链接的图片,使用图片地图这种方式既能减少HTTP请求,有无需改变页面外观感受。图片地图允许在一个图片上关联多个URL.2: CSS Sprites和图片地图一样,CSS Sprites也可...
分类:
Web程序 时间:
2015-08-08 16:26:10
阅读次数:
186
1 /** 2 * 设置导航栏按钮主题 3 */ 4 + (void)setupBarButtonItemTheme 5 { 6 UIBarButtonItem *item = [UIBarButtonItem appearance]; 7 8 // 设置背景 9 ...
分类:
移动开发 时间:
2015-07-26 22:21:07
阅读次数:
157