- (void)viewDidLoad {
[super viewDidLoad];
[self.view setBackgroundColor:[UIColor redColor]];
UIView *mySubview = [[UIView alloc] initWithFrame:CGRectMake(50,50,200,200)];
[mySubview setBackgroundColor:[UIColor blueColor]];
[self.view addSubview:mySubview];