2016-08-16 101 views
3

這就是我的Tabbar現在的樣子。如何更改UITabBarItem徽章位置?

enter image description here

如何移動該徽章,使其重疊鈴圖標右上方?任何幫助表示讚賞。

+0

看到這個http://stackoverflow.com/questions/24236823/how-to-adjust-tab-bar-badge-位置 –

+0

[iOS 7 UITabBar徽章位置]的可能重複(http://stackoverflow.com/questions/19165671/ios-7-uitabbar-badge-position) – chrs

回答

5

試試這個:

func repositionBadge(tabIndex: Int){ 

    for badgeView in self.tabBarController!.tabBar.subviews[tabIndex].subviews { 

     if NSStringFromClass(badgeView.classForCoder) == "_UIBadgeView" { 
      badgeView.layer.transform = CATransform3DIdentity 
      badgeView.layer.transform = CATransform3DMakeTranslation(-17.0, 1.0, 1.0) 
     } 
    } 
} 

注意,開始的tabIndex從1

+2

請注意:這使用私有API,Apple可能會拒絕您的應用程序使用這個。 – Louis