前言:跟UINavigationController类似,UITabBarController也可以轻松地管理多个控制器,轻松完成控制器之间的切换,典型例子就是QQ、微信等应用。
分类:
移动开发 时间:
2015-12-09 23:01:47
阅读次数:
185
这些图标是放在 UITabBar 和 UINavigationBar 里的。所以只要遍历它们的 subViews,找到类型是 UIButton 的就可以了。所有想获取它们的相对位置很容易。但我有个需求是需要在整个屏幕覆盖一层 UIView,然后在 这些图标旁画一些图案(其实我是在做应用教程)。这时候...
分类:
移动开发 时间:
2015-12-09 19:12:41
阅读次数:
510
建个空的iOS工程- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ self.window = [[UIWindow all...
分类:
其他好文 时间:
2015-12-01 14:27:55
阅读次数:
119
UINavigationController与UITabBarController是iOS开发中最常用的两种视图控制器,它们都属于UIViewController的子类,继承关系如下:@interface UITabBarController : UIViewController @interfac...
分类:
其他好文 时间:
2015-11-28 16:45:37
阅读次数:
166
有一阵子没有写随笔,感觉有点儿手生。一个多月以后终于又一次坐下来静下心写随笔,记录自己的学习笔记,也希望能够帮到大家。 废话少说回到正题,UINavigationController是IOS编程中比较常用的一种容器view controller,很多系统的控件(如UIImagePickerView....
分类:
其他好文 时间:
2015-11-28 00:53:01
阅读次数:
183
一、简单介绍UITabBarController和UINavigationController类似,UITabBarController也可以轻松地管理多个控制器,轻松完成控制器之间的切换,典型的例子就是QQ、微信等应?。二、UITabBarController的使用1.使用步骤:(1)初始化UIT...
分类:
移动开发 时间:
2015-11-27 23:29:08
阅读次数:
247
2015/11/8Day 34UITabBarController跟UINavigationController类似,UITabBarController也可以轻松地管理多个控制器,轻松完成控制器之间的切换,典型例子就是QQ、微信等应用UITabBarController的使用步骤 ? 初始化UIT...
分类:
移动开发 时间:
2015-11-25 22:20:29
阅读次数:
309
pushViewController和presentViewController的区别2014-4-15阅读3344评论11.用UINavigationController的时候用pushViewController:animated----返回之前的视图[[self navigationContr...
分类:
其他好文 时间:
2015-11-23 23:22:31
阅读次数:
150
1.用UINavigationController的时候用pushViewController:animated----返回之前的视图[[self navigationController] popViewControllerAnimated:YES];---ps:push以后会在navigatio...
分类:
其他好文 时间:
2015-11-20 10:44:30
阅读次数:
129
UINavigationController UIButton *myButton = [UIButton buttonWithType:UIButtonTypeSystem]; //[UIButton buttonWithType:UIButtonTypeCustom];//显示真实图...
分类:
其他好文 时间:
2015-11-19 20:38:07
阅读次数:
117