可能问题是基本的,但我有一个setBackgroundColor的错误。
我有UIView其中包含UITableView. UITableView是clearColored。我正在尝试设置背景UIView:
[self.viewForTable setBackgroundColor: [UIColor colorWithPatternImage:[UIImage imageNamed:@"bgIngrList.png"]]];
在普通 iPad 上,它看起来像:

但在视网膜 iPad 上(如第二张图片开始显示):

我有两个图像“bgIngrList.png”和“bgIngrList@2x.png”,分别为290x260和580x520。
错误可能在哪里?
编辑
UIImageView我已经通过使用而不是解决了这个问题UIView。
谢谢大家!!!