我想显示一些文本,以及相对日期.所以我尝试这样做:
let date = CLKrelativeDateTextProvIDer(date: NSDate(),style: style,units: units) let template = CLKComplicationTemplateUtilitarianLargeFlat() template.textProvIDer = CLKSimpleTextProvIDer(text: "next: \(date)")
但我得到的只是:
<CLKrelativeDateTextProvIDer: 0x79860b80>
你能从CLKrelativeDateTextProvIDer中提取原始文本还是以某种方式将它与CLKSimpleTextProvIDer结合起来?
解决方法 将CLKrelativeDateTextProvIDer对象传递给格式字符串,如Apple的代码中所述:@interface CLKTextProvIDer : NSObject <NScopying>// By passing one or more CLKTextProvIDers in the format substitutions,you can add text around the output of a text provIDer.+ (CLKTextProvIDer *)textProvIDerWithFormat:(Nsstring *)format,... NS_FORMAT_FUNCTION(1,2);@property (nonatomic) UIcolor *tintcolor;@end
这是一个例子:
ID relativeDate = [CLKrelativeDateTextProvIDer textProvIDerWithDate:[NSDate dateWithTimeIntervalSinceNow:12 * 60] style:CLKrelativeDateStyleNatural units:NSCalendarUnitMinute];template.textProvIDer = [CLKTextProvIDer textProvIDerWithFormat:@"next: %@",relativeDate];
日期提供程序中显示的时间仍将随着时间的推移而更新,而无需刷新任何内容.
总结以上是内存溢出为你收集整理的swift – 你能从CLKRelativeDateTextProvider中提取文本吗?全部内容,希望文章能够帮你解决swift – 你能从CLKRelativeDateTextProvider中提取文本吗?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)