我正在做一个iPhone项目。 作为其中的一部分,我想知道当我们点击按钮时如何将uiview加载到屏幕的一半。
答案 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];