当我观看有关Apple Watch及其功能的videos from Apple之一时,我注意到页面指示器的点颜色会根据显示的页面而改变。
他们还在Apple Watch Human Interface Guidelines App Anatomy 部分中获得了彩色圆点的图像。请注意彩色标题文本。
通常在WatchKit我会使用以下代码段来执行此操作:
let features = ["First", "Second", "Third"]
let controllers = [String](count: features.count, repeatedValue: "FeatureInterfaceController")
self.presentControllerWithNames(controllers, contexts: features)
不幸的是,据我所知,无法像currentPageIndicatorTintColor
here一样访问pageIndicatorTintColor
和UIKit
(向下滚动到 Tint Color )。
我想知道Apple是否只是为视频添加了这些颜色,或者它们是否真的将来作为WatchKit的一部分提供?
也许我错了,有办法改变这些圆点颜色。
答案 0 :(得分:6)
正如开发论坛中的Apple工程师所写,此时无法自定义页面控件的颜色。