web-dev-qa-db-ja.com

Swift:タブバーの画像の色合いを変更しますか?

プログラムでtabBarControllerを作成し、タブに含まれる画像(バーではなく)の色合いの色を変更したいと思います。 Swiftでそれを行う方法を誰かに教えてもらえますか?

20
Rahul Sonvane

あなたの 'application:didFinishLaunchingWithOptions'

(window?.rootViewController as! UITabBarController).tabBar.tintColor = UIColor.red

または外観デリゲートを使用します。

UITabBar.appearance().tintColor = UIColor.red
49
Satachito

別の最良の解決策:

「tintColor」という名前のランタイムカラー属性を追加します。

画像の色合いとタイトルの色合いを変更します。

enter image description here

enter image description here

5
Sunil Targe