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