更改按钮单击视图

时间:2013-07-25 07:55:32

标签: iphone uiview

我正在做一个iPhone项目。 作为其中的一部分,我想知道当我们点击按钮时如何将uiview加载到屏幕的一半。

2 个答案:

答案 0 :(得分:1)

您可以使用addSubview:来自UIView Class

答案 1 :(得分:0)

UIView *customView =[UIView alloc]initWithFrame:CGRectMake(10,100,200,200);//Give frame according to your view 
customView.backgroundColor=[UIColor greenColor];
[Self.view addSubView: customView];