李冬强-用代码写view_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 李冬强-用代码写view

李冬强-用代码写view

 2014/7/9 21:16:29  曦阳  程序员俱乐部  我要评论(0)
  • 摘要:主要代码////ViewController.m//创建view-709////Createdbyappleon14-7-9.//Copyright(c)2014年戴维营教育.Allrightsreserved.//#import"ViewController.h"@interfaceViewController()@end@implementationViewController-(void)viewDidLoad{[superviewDidLoad]
  • 标签:view 代码

主要代码

//

//  ViewController.m

//  创建view-709

//

//  Created by apple on 14-7-9.

//  Copyright (c) 2014年 戴维营教育. All rights reserved.

//

 

#import "ViewController.h"

 

@interface ViewController ()

            

 

@end

 

@implementation ViewController

            

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

//    CGPoint origin={0,0};

//    CGSize size={50,50};

//    CGRect rect={origin,size};

    

    UIView *yellView=[[UIView alloc]init];

    yellView.frame=CGRectMake(0, 0, 200, 200);

    yellView.backgroundColor=[UIColor yellowColor];

    [self.view addSubview:yellView];

    

    

    UIView *whiteView=[[UIView alloc]init];

    whiteView.frame=CGRectMake(0, 0, 100, 100);

    whiteView.backgroundColor=[UIColor grayColor];

    [yellView addSubview:whiteView];

    

    UIView *redView=[[UIView alloc]init];

    redView.frame=CGRectMake(100, 100, 100, 100);

    redView.backgroundColor=[UIColor redColor];

    [self.view addSubview:redView];

}

 

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

@end

 

上一篇: 俄推出采用自主操作系统的“超级平板电脑” 下一篇: 没有下一篇了!
发表评论
用户名: 匿名