swift 设置tabbar背景图片
时间: 2023-07-04 07:09:55 浏览: 187
Swift_Tabbar(iOS12)
4星 · 用户满意度95%
你可以通过以下代码来设置TabBar的背景图片:
```swift
// 创建一个UIImage对象
let tabBarBackgroundImage = UIImage(named: "tabBarBackgroundImage")
// 设置TabBar的背景图片
self.tabBarController?.tabBar.backgroundImage = tabBarBackgroundImage
```
其中,`tabBarBackgroundImage`是你自己定义的图片,可以在Assets.xcassets中添加。通过`self.tabBarController?.tabBar.backgroundImage`来设置TabBar的背景图片。
阅读全文