繁体   English   中英

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

[英]add subview in another subview

我使用此代码,但没有任何显示!! ?? 救命

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

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

现在,您的视图没有任何内容。 尝试添加以下内容:

[secondView setBackgroundColor:[UIColor redColor]];

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM