为什么我不能在tvOS中使用UIProgressViewStyle.bar?

时间:2018-02-06 06:34:05

标签: uikit tvos uiprogressview

我正在使用Xcode 9.2编写一个tvOS应用程序,目标是tvOS 11。

我有一个UIProgressView,我试图将它的样式设置为plink.exe -shh username@<ipaddress> ,但Xcode说“.bar不可用”。

如何在我的tvOS应用程序中使用.bar样式的UIProgressView?

1 个答案:

答案 0 :(得分:3)

UIProgressView的样式bar仅在iOS SDK中定义。它在UIKit中被定义为__TVOS_PROHIBITED:

typedef NS_ENUM(NSInteger, UIProgressViewStyle) {
    UIProgressViewStyleDefault,     // normal progress bar
    UIProgressViewStyleBar __TVOS_PROHIBITED,     // for use in a toolbar
};

还在文档中描述: https://developer.apple.com/documentation/uikit/uiprogressviewstyle/1619835-bar

Bar Style Documentation