File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Sources/SwiftBoost/UIKit/Extensions Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- #if canImport(UIKit) && (os(iOS) || os(tvOS) )
1+ #if canImport(UIKit) && (os(iOS))
22import UIKit
33
44extension UIToolbar {
55
66 /**
77 SwiftBoost: Set appearance for tab bar.
88 */
9- @available ( iOS 13 . 0 , tvOS 13 . 0 , * )
9+ @available ( iOS 13 . 0 , * )
1010 public func setAppearance( _ value: ToolbarAppearance ) {
1111 self . standardAppearance = value. standardAppearance
12- if #available( iOS 15 . 0 , tvOS 15 . 0 , * ) {
12+ if #available( iOS 15 . 0 , * ) {
1313 self . scrollEdgeAppearance = value. scrollEdgeAppearance
1414 }
1515 }
1616
1717 /**
1818 SwiftBoost: Appearance cases.
1919 */
20- @available ( iOS 13 . 0 , tvOS 13 . 0 , * )
20+ @available ( iOS 13 . 0 , * )
2121 public enum ToolbarAppearance {
2222
2323 case transparentAlways
You can’t perform that action at this time.
0 commit comments