1. 程式人生 > >TabbarItem沒有文字,圖片居中

TabbarItem沒有文字,圖片居中

// 矯正TabBar圖片位置,使之垂直居中顯示
CGFloat offset = 5.0;
for (UITabBarItem *item in self.tabbar.items) {
item.imageInsets = UIEdgeInsetsMake(offset, 0, -offset, 0);
}