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))
2
2
import UIKit
3
3
4
4
extension UIToolbar {
5
5
6
6
/**
7
7
SwiftBoost: Set appearance for tab bar.
8
8
*/
9
- @available ( iOS 13 . 0 , tvOS 13 . 0 , * )
9
+ @available ( iOS 13 . 0 , * )
10
10
public func setAppearance( _ value: ToolbarAppearance ) {
11
11
self . standardAppearance = value. standardAppearance
12
- if #available( iOS 15 . 0 , tvOS 15 . 0 , * ) {
12
+ if #available( iOS 15 . 0 , * ) {
13
13
self . scrollEdgeAppearance = value. scrollEdgeAppearance
14
14
}
15
15
}
16
16
17
17
/**
18
18
SwiftBoost: Appearance cases.
19
19
*/
20
- @available ( iOS 13 . 0 , tvOS 13 . 0 , * )
20
+ @available ( iOS 13 . 0 , * )
21
21
public enum ToolbarAppearance {
22
22
23
23
case transparentAlways
You can’t perform that action at this time.
0 commit comments