用ios代码做view
import“ViewController.h"
@interface ViewController()
@end
@implementation ViewController
-(void)viewDidload
{
[super viewDidload];
UIView *redview=[[UIView alloc]init];
redview.frame=CGRectMake(0,0,300,100);
redview.backgroundcolor=[UIColor redColor];
[self.view addSubview:redview];
UIView *greenview=[[UIView alloc]init];
greenview.frame=CGRectMake(0,100,150,100);
greenview.backgroundColor=[UIColor greenColor];
[redview addSubview:greenview];
UIView *whiteview=[[UIView alloc]init];
whiteview.frame=CGRectMake(150,100,150,100);
whiteview.backgroundColor=[UIColor blackColor];
[self.view addSubview:whiteview];
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。