HomePageViewController *first = [[HomePageViewController
alloc] init];
first.tabBarItem = [[UITabBarItem
alloc] initWithTitle:@"首页"
image:aImage selectedImage:nil];
UINavigationController...
分类:
移动开发 时间:
2015-04-21 14:39:41
阅读次数:
136
。。。。。。ThirdViewController *thirdVC = [[ThirdViewControlleralloc]initWithTitle:@"搜索信息"]; //设置tabbarItem 的图片显示原图颜色; thirdVC.tabBarItem = [[UITabBarIte.....
分类:
其他好文 时间:
2015-04-12 22:21:19
阅读次数:
129
//设置公共TabBarItem 的属性
[UITabBarItem appearance]
//设置公共NavigationBar 的属性
[UIBarButtonItem appearance]...
分类:
移动开发 时间:
2015-03-19 14:49:27
阅读次数:
152
UITabBarController和UINavigationController类似,UITabBarController也可以轻松地管理多个控制器,轻松完成控制器之间的切换,典型的例子就是QQ、微信等应?。切记给UItabbarItem指定图片时,图片的高度不能大于49,由于UItabbarIt...
分类:
其他好文 时间:
2015-03-19 13:10:40
阅读次数:
117
在iOS开发中,经常要考虑系统的向下兼容,如果使用了低版本不存在的API ,则不能向下兼容,这时候如果想兼容低版本,就需要根据当前设备的版本进行不同的处理,在低版本中可能要牺牲一些新功能。下面以UITabBarItem修改字体为例,说明一下如何向下兼容if ([[[UIDevice currentD...
分类:
移动开发 时间:
2015-03-16 12:34:22
阅读次数:
146
看着标题是不是乱的一塌糊涂。。。。。。。
在开发中,你很可能就理不清这些关系,刚好闲的蛋疼,来整理一下吧。
一、UINavigationBar
UINavigationBar 是一个控件, 表示UINavigationController(导航控制器)顶部那个玩意儿,UINavigationBar上面显示什么内容,完全由UINavigationItemshu...
分类:
其他好文 时间:
2015-03-15 19:53:31
阅读次数:
115
UITabBarController自定义的2种方法 1、ios5.0之后可以修改toolbar背景了得,UITabBarItem的选中状态和非选中状态的图片都可以自定义了 2、ios5.0之后UIViewController可以添加子ViewController了,并且可以互相切换展示不同的Vie...
分类:
其他好文 时间:
2015-01-27 23:22:06
阅读次数:
633
UITabBarController UINavigationController1,一个导航控制器,对应于一个视图控制器2,标签控制器式是管理的几个视图控制器,子控制器是并列的。每一个分栏控制器只有一个UITabBar视图,用于显示UITabBarItem实例,UITabBarItem由当前的视....
分类:
其他好文 时间:
2015-01-27 23:11:39
阅读次数:
293
self.tabBarController = [[UITabBarController
alloc] init];
HomeViewController *homeVC = [[HomeViewController
alloc] init];
UINavigationController *nav1 = [[UINavigationController
al...
分类:
其他好文 时间:
2015-01-14 15:35:23
阅读次数:
154
修改UITabBarItem下面字体的颜色,如图:
[[UITabBarItem
appearance] setTitleTextAttributes:[NSDictionary
dictionaryWithObjectsAndKeys:[UIColor
blackColor], UITextAttributeTextColor,
nil] forState:UIControlS...
分类:
其他好文 时间:
2015-01-08 15:24:54
阅读次数:
122