我有三个数组,其中包含用条目填充复杂时间轴的数据。
当我滚动时间旅行时,并发症不会改变,所以我知道我一定做错了。
func getTimelineEntriesForComplication(complication: CLKComplication, afterDate date: NSDate, limit: Int, withHandler handler: (([CLKComplicationTimelineEntry]?) -> Void)) {
for headerObject in headerArray! {
for body1Object in body1Array! {
for body2Object in body2Array! {
let headerTextProvider = CLKSimpleTextProvider(text: headerObject as! String)
let body1TextProvider = CLKSimpleTextProvider(text: body1Object as! String)
let body2TextProvider = CLKRelativeDateTextProvider(date: body2Object as! NSDate, style: .Offset, units: .Day)
print("HeaderTextProvider: \(headerTextProvider)")
print("Body1TextProvider: \(body1TextProvider)")
print("Body2TextProvider: \(body2TextProvider)")
let template = CLKComplicationTemplateModularLargeStandardBody()
template.headerTextProvider = headerTextProvider
template.body1TextProvider = body1TextProvider
template.body2TextProvider = body2TextProvider
let timelineEntry = CLKComplicationTimelineEntry(date: body2Object as! NSDate, complicationTemplate: template)
entries.append(timelineEntry)
print("TimeEnt: \(entries)")
print("TimeEntCount: \(entries.count)")
}
}
}
handler(entries)
}
我的想法:
body2Array
我的控制台上的输出是:
HeaderTextProvider: <CLKSimpleTextProvider: 0x78e3f800>
Body1TextProvider: <CLKSimpleTextProvider: 0x78e4eb30>
Body2TextProvider: <CLKRelativeDateTextProvider: 0x78e4f050>
TimeEnt: [<CLKComplicationTimelineEntry: 0x78e4edd0> date = 2016-03-21 05:00:00 +0000, template = <CLKComplicationTemplateModularLargeStandardBody: 0x78e4edf0>, animationGroup = (null), <CLKComplicationTimelineEntry: 0x78e4f520> date = 2016-10-01 17:00:00 +0000, template = <CLKComplicationTemplateModularLargeStandardBody: 0x78e4f540>, animationGroup = (null)]
TimeEntCount: 2
答案 0 :(得分:1)
为什么时间旅行不按预期方式运作:
时间旅行仅支持48小时滑动窗口。 <{3}} latestTimeTravelDate
以外的任何时间表条目都将被忽略。
构建时间轴时,请勿在此日期之后创建任何条目。这样做是浪费时间,因为这些条目不会立即显示。
你可以提前六个月到10月1日的时间旅行,所以你的3月21日的参赛作品永远不会改变,以显示10月1日的参赛作品。
其他问题:
您可能并不是要为每个标题对象迭代每个正文对象。
您还希望在此方法中以空entries
数组开头,这样您就不会无意中附加到包含任何现有(向后)时间轴条目的数组。
将循环更改为如下所示:
// Unwrap optional arrays. You can also check counts if there's the possibility that they are not equally sized.
guard let headers = headerArray, texts = body1Array, dates = body2Array else { return handler(nil) }
var entries = [CLKComplicationTimelineEntry]()
for (index, header) in headers.enumerate() {
let text = texts[index]
let date = dates[index]
...
}
print("TimeEntCount: \(entries.count)")
这将为您提供headerArray.count
个时间轴条目,而不是headerArray.count
x body1Array.count
x body2Array.count
条目。
您可能还想指定每个数组中的对象类型,因此您不必经常使用!这将提供类型安全性,让编译器对代码进行类型检查。
如果将数据保存在结构数组(带有标题,文本和日期属性)中,而不是使用多个数组,它还可能使您的代码更具可读性和可维护性。