AppDelegate.m FirstViewController.m ...
分类:
微信 时间:
2016-04-20 23:20:46
阅读次数:
341
iOS开发UI篇—UITabBarController简单介绍 iOS开发UI篇—UITabBarController简单介绍 iOS开发UI篇—UITabBarController简单介绍 一、简单介绍 UITabBarController和UINavigationController类似,UIT ...
分类:
移动开发 时间:
2016-04-19 19:06:28
阅读次数:
183
一、标签视图控制器——UITabBarController 1、UITabBarController的继承关系: UITabBarController和UINavigationController一样都是继承于UIViewController。 2、创建UITabBarController 程序的添 ...
分类:
移动开发 时间:
2016-04-19 00:14:55
阅读次数:
244
1. 标签视图控制器 -- UITabBarController 视图(UIView) > 图层 > 子视图 视图控制器(UIViewController) > 管理视图 导航控制器(UINavigationController) > 管理有层次关系的视图控制器 标签视图控制器(UITabBarCo ...
分类:
移动开发 时间:
2016-04-18 20:48:28
阅读次数:
252
#pragma mark - UINavigationController UITabBarController 控制器的切换方式 --> Push / Model UINavigationController 第5点 和 UITabBarController 第4点 有使用说明 一、UINavig ...
分类:
其他好文 时间:
2016-04-16 14:00:37
阅读次数:
503
MyCustomTabBar.h文件 #import <UIKit/UIKit.h> @interface MyCustomTabBar : UITabBarController @end MyCustomTabBar.m文件 #import "MyCustomTabBar.h" #define k ...
分类:
其他好文 时间:
2016-04-15 21:34:40
阅读次数:
167
一:什么时候需要进行封装 1:写代码处处要有封装思想:封装好的代码要基本符合以下三个条件:1:封装的部分向外界提供的接口调用最简洁方便 2:封装的时候要考虑项目的拓展性 3:封装以后要想代码量更加简洁 2:什么时候需要封装:具有相同业务逻辑的部分、或是调用频率很高的大量重复代码、或是将UI部分某些通 ...
分类:
其他好文 时间:
2016-04-10 14:21:41
阅读次数:
300
一:UITabBarController的简单介绍: 1.使用步骤: (1)初始化UITabBarController (2)设置UIWindow的rootViewController为UITabBarController (3)创建相应的子控制器(viewcontroller)(让子控制器作为导航 ...
分类:
其他好文 时间:
2016-04-09 19:06:39
阅读次数:
414