带有黑色边缘的UIImageView

时间:2015-08-06 12:21:50

标签: ios objective-c uiimageview uibutton

我有UIButton图片,但是,图片似乎被移动,一条边是黑色

enter image description here

更奇怪的是,边缘是侧面还是顶部似乎是随机的

enter image description here

已通过Interface Builder添加UIButton,我已将内容模式设置为Aspect Fill。另外,在代码中,我设置了以下内容:

self.itemImage.imageView.contentMode = UIViewContentModeScaleAspectFill;

任何想法可能是什么原因?另外值得注意的是,这只发生在设备上(iPhone 6,iOS8.4)。在模拟器上没有像预期的黑边。

2 个答案:

答案 0 :(得分:1)

试试这个......

  

self.itemImage.imageView.contentMode = UIViewContentModeCenter;

答案 1 :(得分:0)

尝试更改背景颜色以查看我们看到的黑色边缘是否为背景。

self.itemImage.imageView.backgroundColor = [UIColor yellowColor];

如果边缘没有变黄,则可能是造成问题的图像。