_loadingView = [[UIImageView
alloc]initWithFrame:CGRectMake(150,
300,
50, 50)];
_loadingView.image = [UIImage
imageNamed:@"22"];
[self.view
addSubview:_loadingView];
CABasicAn...
分类:
其他好文 时间:
2015-08-06 18:25:53
阅读次数:
118
[self.contentView addSubview:self.scrollView]; self.scrollView.userInteractionEnabled = NO; [self.contentView addGestureRecognizer:self.scro...
分类:
其他好文 时间:
2015-08-03 22:17:50
阅读次数:
112
UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(120, 10, 80, 80)]; view2.backgroundColor = [UIColor redColor]; [self.view addSubview:view2]; ...
分类:
其他好文 时间:
2015-08-03 16:33:02
阅读次数:
202
将一个View显示覆盖到NavigationBar上面,不能将将要显示的View添加到self.view上面,这样无法覆盖navigationBar。
如果需要覆盖NavigationBar,则将显示的view添加到self.navigationController.view
[self.navigationController.view addSubview:newView];效果如下:
...
分类:
移动开发 时间:
2015-08-02 15:13:19
阅读次数:
134
1.创建UIview例子: UIView *view1 =[[UIView alloc ] initWithFrame:CGRectMake(140, 100, 100, 40)];2.view1设置背景颜色例子:view1.backgroundColor = [UIColor whiteColor];3.把视图贴在窗口上例子:[self.window addSubview:view1];4.释放例...
分类:
其他好文 时间:
2015-07-30 09:35:48
阅读次数:
118
layoutSubviews在以下情况下会被调用:
1、init初始化不会触发layoutSubviews
但是是用initWithFrame 进行初始化时,当rect的值不为CGRectZero时,也会触发
2、addSubview会触发layoutSubviews
3、设置view的Frame会触发layoutSubviews,当然前提是frame的值设置前后发生...
分类:
移动开发 时间:
2015-07-28 18:33:51
阅读次数:
162
self.myView=[[UIView alloc]initWithFrame:CGRectMake(50, 50, 200, 200)]; self.myView.backgroundColor=[UIColor redColor]; [self.view addSubview:self.myV...
分类:
其他好文 时间:
2015-07-24 12:36:33
阅读次数:
117
有的时候需要将图片现实为圆形
比如头像等
以下面的图片为例
我们按照正常的方式添加后效果如下
UIImageView *userIconImageV=[[UIImageView alloc]initWithFrame:CGRectMake(30, 120, 188, 188)];
[self.view addSubview:u...
分类:
移动开发 时间:
2015-07-23 11:57:10
阅读次数:
138
最近在玩Watch,通过研究watch的布局后发现,其InterfaceController原生布局只有横向和竖向两种,且控件之间不能交叠,也无法addSubview那样添加子控件。
但有没有办法达到目的呢?...
分类:
其他好文 时间:
2015-07-22 13:10:42
阅读次数:
84
如果2个控制器的view是?父?子关系,那么这2个控制器也应该为?父?子关系?[vc01.view addSubview: vc02.view];?[vc01 addChildViewController: vc02];?// 会将vc02添加到vc01.childViewControllers数组...
分类:
移动开发 时间:
2015-07-20 18:55:34
阅读次数:
128