我使用Xcode的"iOS App with Watchkit App"模板创建了一个应用,进入TARGETS
并选中Complications Configuration > Supported Families > Graphic Corner
,然后在扩展中打开ComplicationController.swift
并修改getCurrentTimelineEntry()
:
func getCurrentTimelineEntry(for complication: CLKComplication, withHandler handler: @escaping (CLKComplicationTimelineEntry?) -> Void) {
let cornerTemplate = CLKComplicationTemplateGraphicCornerStackText()
cornerTemplate.outerTextProvider = CLKSimpleTextProvider(text: "Outer")
cornerTemplate.innerTextProvider = CLKSimpleTextProvider(text: "Inner")
let entry = CLKComplicationTimelineEntry(date: Date(), complicationTemplate: cornerTemplate)
handler(entry)
}
我还修改了getLocalizableSampleTemplate()以提供一个示例,但这也不起作用:
func getLocalizableSampleTemplate(for complication: CLKComplication, withHandler handler: @escaping (CLKComplicationTemplate?) -> Void) {
let cornerTemplate = CLKComplicationTemplateGraphicCornerStackText()
cornerTemplate.outerTextProvider = CLKSimpleTextProvider(text: "Outer")
cornerTemplate.innerTextProvider = CLKSimpleTextProvider(text: "Inner")
handler(cornerTemplate)
}
当我在模拟器或手机/手表上运行应用程序,并选择复杂功能作为其中一个图形角时,我希望看到"外部"和"内部"。相反,它为一个显示我的应用程序名称,为另一个显示"---"。
我哪里做错了?
2条答案
按热度按时间0s7z1bwu1#
这是我的一些代码,目前正在工作:
几点考虑:
getLocalizableSampleTemplate
代码了吗?这应该是你配置复杂功能时要做的第一件事。你应该准备好一些东西,当用户滚动复杂功能插槽并看到你的代码时,它们会立即显示出来。如果你没有,这可能就是为什么你看到的是破折号而不是你想要的文本。Targets > Your WatchKit Extension > Complications Configuration > Data Source Class
下,确保分配了ComplicationController。EDIT -澄清一下,
graphicCornerComplication
只是我添加到一些模型中的一个属性,这样我就可以通过调用graphicCornerComplication来快速获得时间轴条目。在使用中,它看起来像这样:4szc88ey2#
以下是对我有效的方法: