某个 页面覆盖了 UITabBar 的tabItem的解决办法
将这个页面的背景色设置为无色:
[self.view setBackgroundColor:[UIColor clearColor]];
或者
self.view.frame = CGRectMake(0, 0, Screen_width, Screen_height-TabBar_height);
修复前:UITabBar 的tabItem没有显示出来

修复后:正常显示了。

将这个页面的背景色设置为无色:
[self.view setBackgroundColor:[UIColor clearColor]];
或者
self.view.frame = CGRectMake(0, 0, Screen_width, Screen_height-TabBar_height);
修复前:UITabBar 的tabItem没有显示出来

修复后:正常显示了。
