在另一个子视图中添加子视图

时间:2010-10-17 23:10:18

标签: iphone

我使用此代码但没有显示!!!!?帮助

CGRect frame = CGRectMake(0.0,0.0,480,320);
secondview=[[UIView alloc] initWithFrame:frame];

[self.view addSubview:secondview];  
[self.view bringSubviewToFront:secondview];

1 个答案:

答案 0 :(得分:1)

目前您的观点没有任何内容。尝试添加:

[secondView setBackgroundColor:[UIColor redColor]];