Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的代码:
self.commentTextViewBorder.image = [[UIImage imageNamed:@"border_comment_field"] resizableImageWithCapInsets:UIEdgeInsetsMake(11, 11, 11, 11)];
我发现它没有使用 @2x 图像文件来使 resiable。有什么问题吗?
将您的image_name.png&image_name@2x.png放在您的主捆绑文件夹中,然后使用
image_name.png
image_name@2x.png
[UIImage imageNamed:@"image_name.png"];
很好。将根据带或不带视网膜显示器的设备自动使用正确的。