使用文件:
file1.JPG
file2.png
将JPG加载为后台失败:
(UITextfield).backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:"file1"]];
加载PNG有效:
(UITextfield).backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:"file2"]];
将JPG拖放到Interface Builder UIView中。
但是初始化UIImageView失败了:
[[UIImageView alloc] initWithImage:[UIImage imageNamed:"file1"]];
咦?这对我没有意义:(。这是在iPad3 / iOS 5.1上。有什么建议吗?
答案 0 :(得分:1)
自我回答...... Xcode中的一些错误与区分大小写有关,加上UIImage不支持“jpg”作为自动文件扩展名。
此外:
最后: