1、添加子控制器很简单 分两步 一个是 view 一个是 controller1 [self addChildViewController:tableCTR];2 [self.view addSubview:tableCTR.view];最后不要忘了加一行[tableCTR didM...
分类:
其他好文 时间:
2015-04-16 23:25:35
阅读次数:
169
??
[IOS笔记] - addChildViewController
View Controller中可以添加多个sub view,在需要的时候显示出来;
可以通过viewController(parent)中可以添加多个child viewController;来控制页面中的sub view,降低代码耦合度;
通过切换,可以显示不同的view;,替代之前的addSubView的...
分类:
其他好文 时间:
2015-04-15 14:52:22
阅读次数:
87
UIView提供了大量管理视图的方法
//加一个视图到一个视图里面
addSubview:
//将一个视图移到前面
bringSubviewToFront:
//将一个视图推送到背后
sendSubviewToBack:
//把视图移除
removeFromSuperview
//插入视图 并指定索引
insertSubview:atIndex:
//插入视图在某个视图之上
...
分类:
移动开发 时间:
2015-04-11 11:50:25
阅读次数:
152
1、[self.view addSubView:view];和[self.window addSubView:view];需要注意,此方法只是把页面(view)加在当前页面(view)上,控制器(viewController)还是原来那个控制器。此时再用[self.navigationColler ...
分类:
其他好文 时间:
2015-04-10 13:10:39
阅读次数:
131
一、随机数的声称 1、 arc4random()%10 2、 arc4random_uniform(10) 两种方法产生的效果都是一样的! 二、UIView的常见方法 1、addSubview [self.view addSubview:newView]; 2、NSarrary* subviews这...
分类:
其他好文 时间:
2015-04-05 23:29:54
阅读次数:
209
UIView
*view
=
[[UIView
alloc]
initWithFrame:CGRectMake(120,10,80,80)];
view.backgroundColor
=
[UIColor
redColor];[self.view
addSubview:view2];
UIBezierPath
*maskPath
=
[UIBezierPath
be...
分类:
其他好文 时间:
2015-04-03 15:18:56
阅读次数:
129
在cell.m文件中 1)初始化方法中: self.lalName=[[UILabel alloc] initWithFrame:CGRectMake(71, 5, 250, 40)]; [self addSubview:self.lalName]; 2)创建方法://给用户介绍赋值并且实...
分类:
移动开发 时间:
2015-04-03 15:03:56
阅读次数:
140
//比如创建一个UIImageView到view上UIImageView *imageView = [[UIImageView allc] init];imageView.tag = 10001; //需要设置一个tag [self.view addSubView:imageView];//在别.....
分类:
移动开发 时间:
2015-04-02 13:12:14
阅读次数:
162
// 1.添加下拉刷新控件 UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init]; [self.tableView addSubview:refreshControl]; // 2.监听...
分类:
其他好文 时间:
2015-03-13 09:19:38
阅读次数:
123
纯代码创建Button控件:// 创建按钮UIButton *btn = [[UIButton alloc] init];// 添加按钮[self.view addSubview:btn];// 设置framebtn.frame = CGRectMake(50, 50, 100, 100);// 设...
分类:
其他好文 时间:
2015-03-12 00:50:38
阅读次数:
110