Xcodeでアプリに取り組んでいます。現在、タブバーに3つのtabBarItemがあります。真ん中はユーザーが選んだ写真にしたいです。変数に目的の画像があり、tabbar.Swiftを設定してコードを入力します。画像を正しいサイズの変数画像に設定し(画像を円で表示する)、タイトルを設定するだけです。文字列の名前。これを行う上での助けをいただければ幸いです。ありがとう
このコードを試してください。
self.tabBarController?.tabBar.items![0].image = UIImage(named: "your image name")
// items![0] index of your tab bar item.items![0] means tabbar first item
self.tabBarController?.tabBar.items![0].selectedImage = UIImage(named: "your image name")