在我的应用程序中,我想在 UIView 上设置背景图像。在模拟器 iOS 中,此代码有效。并在 iPhone 黑色背景上。这是代码:
- (void)viewDidLoad
{
[super viewDidLoad];
UIGraphicsBeginImageContext(self.view.frame.size);
[[UIImage imageNamed:@"appBG.png"] drawInRect:self.view.bounds];
UIImage *appbg = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
self.view.backgroundColor = [UIColor colorWithPatternImage:appbg];
}
更新:我决定了我的问题