一、今天的任务 1)自定义标签栏控制器 2)自定义导航栏控制器 3)在新特性界面播放音频 1、第一个任务:自定义标签栏控制器 原因:默认的TabbarViewController不能满足项目的需求。 1)自定义TabBarButton button的内部构造是由一个label和imageView组成 ...
分类:
移动开发 时间:
2016-04-01 12:59:06
阅读次数:
241
导航控制器appDelegateViewController * vc = [[ViewController alloc] init]; UINavigationController * nav = [[UINavigationController alloc] initWithRootViewCo
分类:
其他好文 时间:
2016-03-23 10:14:55
阅读次数:
209
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"侧栏" style:UIBarButtonItemStylePlain target:self action:@selector(click
分类:
其他好文 时间:
2016-03-10 23:21:25
阅读次数:
187
自定义导航栏的字体和颜色,只需要自定义一个lable,然后将lable添加到导航栏的titleview中就可以了 代码如下 UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0,0,0,0)];//这个frame是初设的,没关系,后
分类:
移动开发 时间:
2016-02-15 12:17:19
阅读次数:
223
IOS中自定义导航栏标题: UILabel *titleText = [[UILabel alloc] initWithFrame: CGRectMake(160, 0, 120, 50)]; titleText.backgroundColor = [UIColor clearColor]; tit...
分类:
移动开发 时间:
2016-01-27 14:38:41
阅读次数:
303
我们自己新建一个View,来自定义导航栏,如下代码:#import @interface CustomNavigation : UIViewtypedef enum { customEventClickLBtn1 ,//点击了最左边的按钮 customEventClickRBtn1 , //最右.....
分类:
移动开发 时间:
2016-01-04 22:11:38
阅读次数:
243
自定义一个常用ListViewController.h文件1 #import 2 3 @interface ListViewController : UIViewController4 5 -(void)diquButtonClick;6 7 @end.m文件 1 // 2 // ListVi...
分类:
移动开发 时间:
2015-12-16 12:11:12
阅读次数:
1393
自定义导航按钮UIBarButtonItem关于导航栏的六个小技巧ios开发的一些小技巧篇一制作一个可以滑动操作的 Table View Cell - IOS - 伯乐在线一个iOS开发者的修真之路 - IOS - 伯乐在线iOS性能优化 - IOS - 伯乐在线block没那么难(一):block...
分类:
其他好文 时间:
2015-12-10 23:35:17
阅读次数:
196
基本上每个iOS APP里面都有导航,比如微信、QQ、支付宝。导航可以很方便地帮助我们管理视图控制器(UIViewController)。导航的重要性不言而喻,基本上是每一位iOS初学者都要接触到的问题。iOS系统导航栏中有leftBarButtonItem和rightBarButtonItem,我...
分类:
移动开发 时间:
2015-11-29 00:59:04
阅读次数:
204
直接上代码:#pragma mark - 顶部返回按钮-(void)customizeNavigationLeftButton{ UIButton *leftBt = [UIButton buttonWithType:UIButtonTypeCustom]; leftBt.frame = CGR.....
分类:
其他好文 时间:
2015-11-24 12:30:46
阅读次数:
137