对于通用应用程序,如何在 ViewController 中设置 UIImageView 框架?
UIView *baseView = [[UIView alloc] init];
[self.view addSubview:baseView];
// Displays UIImageView
UIImageView *myImage = [[UIImageView alloc]
initWithImage:[UIImage imageNamed:@"tool.png"]];
[baseView addSubview:myImage];
当我运行应用程序时,它显示黑屏。所以我想我必须为它设置一个框架。