iOS:“resizableImageWithCapInsets:”没有在tabBar中拉伸

时间:2013-11-09 04:36:36

标签: ios objective-c

根据answer的建议,我正在使用

self.tabBar.selectionIndicatorImage = [[UIImage imageNamed:@"tabBackground.png"] 

resizableImageWithCapInsets:UIEdgeInsetsMake(10, 10, 10, 10) 

resizingMode:UIImageResizingModeStretch]; 

每个选定的标签栏项目

出于某种原因,我的边缘有空白区域。我假设它没有完全拉伸

这是我得到的(截图):enter image description here

我做错了什么?

1 个答案:

答案 0 :(得分:0)

检查图像尺寸是否为视网膜图像,然后检查点尺寸。

插图应该是

UIEdgeInsetsMake(5.0f, 5.0f, 5.0f, 5.0f) // as worked for me..