所以我得到了这段代码,我想在我的视图上显示一张图片:
imgLogo = [[UIImageView alloc] init];
[imgLogo setFrame:CGRectMake(60, 200, 200, 200)];
[imgLogo setImage:[UIImage imageNamed:@"MyFrigginAwesomeLogo"]];
[self.view addSubview:imgLogo];
但问题是它在模拟器(iOS 7)上测试时可以正常工作,但在我的 iPhone(4S 和 iOS7)本身上没有显示任何内容。