ios - 标签栏项目是一个灰色方 block
<p><p>如您所见,只有一个灰色的大方 block ,而不是图像。我的 Assets 目录中有一张图片,我已经通过属性检查器设置了它。该图像为 50x50 像素,我在文档中读到它可以是任意大小,但不能大于 96x96。截图如下。</p>
<p> <img src="/image/02KJj.png" alt="enter image description here"/> </p>
<p>谢谢!</p>
<p> <a href="/image/02KJj.png" rel="noreferrer noopener nofollow">1</a> :</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>iOS7存在bug,未选中的标签栏项目总是灰色。</p>
<p>试试这个:(在 AppDelegate 应用程序中添加:didFinishLaunchingWithOptions:)</p>
<pre><code> UITabBarItem *item1 = self.tabBarController.tabBar.items;
item1.image = [ imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]; // unselected image
item1.selectedImage = ; // selected image
UITabBarItem *item2 ...
...
</code></pre></p>
<p style="font-size: 20px;">关于ios - 标签栏项目是一个灰色方 block ,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/19841858/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/19841858/
</a>
</p>
页:
[1]