我正在使用Xcode 9.2编写一个tvOS应用程序,目标是tvOS 11。
我有一个UIProgressView,我试图将它的样式设置为plink.exe -shh username@<ipaddress>
,但Xcode说“.bar不可用”。
如何在我的tvOS应用程序中使用.bar
样式的UIProgressView?
答案 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