iOS初始化UIView

乞力馬紮羅的雪CYF發表於2015-09-25

     UiView是iOS中很多控制元件的父類,能夠繪製出很多的圖形,具體如何來初始化呢?

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
  [super viewDidLoad];

  
  //檢視;
  UIView *view1 = [[UIView alloc] init];
  //位置大小;
  view1.frame = CGRectMake(0, 0, 200, 300);
  //背景顏色;
  view1.backgroundColor = [UIColor yellowColor];
  
  //將檢視加入到父檢視中;
  [self.view addSubview:view1];
  
}



@end

執行效果如下:


github主頁:https://github.com/chenyufeng1991  。歡迎大家訪問!

相關文章