我在我的應用程序中創建了UITabBarController。圖像縮放爲UITabBar背景圖像
然後在viewDidLoad()
我想更改UITabBar背景圖片。下面是我試圖使它的工作代碼:
class MainTabBarController: UITabBarController {
override func viewDidLoad() {
super.viewDidLoad()
UITabBar.appearance().translucent = false
UITabBar.appearance().backgroundColor = UIColor.clearColor()
UITabBar.appearance().backgroundImage = UIImage(named: "tabbar_background")
UITabBar.appearance().contentMode = .ScaleAspectFit
}
}
但結果是不正確的(image)。有人可以幫我填充整個標籤框嗎?
時發生的圖像以TabBar,所以它顯示了上述的TabBar按鈕並不能看到任何按鍵這項工作。 –