WatchKit UIPageControl 点颜色
WatchKit UIPageControl Dot Colour
当我在观看有关 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
和 pageIndicatorTintColor
,就像您通常作为 UIKit
here 的一部分(滚动下降到 色调颜色).
我想知道 Apple 是否只是简单地为视频添加了这些颜色,或者它们是否真的会在未来作为 WatchKit 的一部分提供?
也许我错了,有办法改变这些圆点的颜色。
正如开发者论坛中一位 Apple 工程师所写,目前无法自定义页面控件的颜色。
当我在观看有关 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
和 pageIndicatorTintColor
,就像您通常作为 UIKit
here 的一部分(滚动下降到 色调颜色).
我想知道 Apple 是否只是简单地为视频添加了这些颜色,或者它们是否真的会在未来作为 WatchKit 的一部分提供?
也许我错了,有办法改变这些圆点的颜色。
正如开发者论坛中一位 Apple 工程师所写,目前无法自定义页面控件的颜色。