1 if (IOS7) { 2 3 4 //ios7下,tabbar选中的文字颜色 5 6 _tabBarController.tabBar.tintColor = COLOR(245, 254, 0, 1); 7 8 } 9 10 els...
分类:
移动开发 时间:
2014-09-14 23:38:37
阅读次数:
355
为了犒劳自己的学习内容,就山寨个微信的视图控制吧。拿着微信,仔细的看了一下,主要用到了TabBarController以及配置TabBarItem, NavigationController以及配置NavigationBarItem, 还用到了我们比较复杂的TableViewController.....
分类:
微信 时间:
2014-09-03 09:32:26
阅读次数:
335
iOS 7的控制器默认都是全屏的
如图所示:
程序入口是一个导航控制器,
导航控制器的根控制器是一个TabBarController,
因此,状态栏+导航栏会盖住TabBarController控制器的上面64的高度
TabBarController的子控制器是一个TableViewController,
因此,TabBarController的TabBar会盖住Table...
分类:
移动开发 时间:
2014-08-29 16:09:08
阅读次数:
236
最终效果图:
Main.storyboard
初始化的控制器是:导航控制器
它的根控制器是:TabBarController
TabBarController的底部是一个自定义的TabBar
里面添加了5个TabBarItem
点击每一个item,
会将tabBar上的对应item的子控制器的navigationItem的值,
转移(赋值,复...
分类:
移动开发 时间:
2014-08-28 00:57:08
阅读次数:
288
一、自定义TabBar选项卡背景 默认UITabBarController的TabBar背景是黑色的,如何自定义成背景图片呢? UITabBarController?*tabBarController?=?[[UITabBarController?alloc]?init];
//?获取选项卡控制器视...
分类:
其他好文 时间:
2014-08-13 22:43:47
阅读次数:
479
ios去掉navigationController和tabBarController里的边框黑线...
分类:
移动开发 时间:
2014-08-13 18:56:07
阅读次数:
234
一、创建UITabBarController常见的在应用程序委托类的applicationDidFinishLaunching:方法中创建,这通常可为应用窗口提供根视图。// 创建一个UITabBarController对象UITabBarController *tabBarController =...
分类:
其他好文 时间:
2014-08-01 23:04:52
阅读次数:
235
最终效果图:
main.storyboard
BeyondViewController.m中有一句关键代码,设置tabbarItem图片的样式(30*30)
//
// BeyondViewController.m
// 17_控制器切换2_tabbarController
//
// Created by beyond on 14-7-31.
//...
分类:
移动开发 时间:
2014-07-31 17:00:37
阅读次数:
205
如果出现:
nested push animation can result in corrupted navigation bar
Finishing up a navigation transition in an unexpected state. Navigation Bar subview tree might get corrupted.
一般这种情况是在自定义的t...
分类:
其他好文 时间:
2014-07-04 00:36:55
阅读次数:
223
一、项目结构 一开始创建一个空的项目 二、主要代码 1、AppDelegate.m- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptio...
分类:
其他好文 时间:
2014-07-02 18:07:05
阅读次数:
174