Posts

Post not yet marked as solved
0 Replies
546 Views
Hi,Can i build a template for the privacy of.complications like I am doing for the timeline entry or does it just show the placeholder image?This is what im doing for the watch compllcationswitch complication.family { case .circularSmall: let circularSmallTemplate = CLKComplicationTemplateCircularSmallRingImage() let image = UIImage(named: "complicationImage") circularSmallTemplate.imageProvider = CLKImageProvider(onePieceImage: image!) circularSmallTemplate.ringStyle = .closed circularSmallTemplate.fillFraction = 0.0 let entry = CLKComplicationTimelineEntry(date: Date(), complicationTemplate: circularSmallTemplate) handler(entry) ...and for the placeholder template very similar// MARK: - Placeholder Templates func getLocalizableSampleTemplate(for complication: CLKComplication, withHandler handler: @escaping (CLKComplicationTemplate?) -> Void) { // This method will be called once per supported complication, and the results will be cached switch complication.family { case .circularSmall: let circularSmallTemplate = CLKComplicationTemplateCircularSmallRingImage() let image = UIImage(named: "complicationImage") circularSmallTemplate.imageProvider = CLKImageProvider(onePieceImage: image!) circularSmallTemplate.ringStyle = .closed circularSmallTemplate.fillFraction = 0.66 handler(circularSmallTemplate) ...but for the privacy I have se it to func getPrivacyBehavior(for complication: CLKComplication, withHandler handler: @escaping (CLKComplicationPrivacyBehavior) -> Void) { handler(.hideOnLockScreen) }But it just shows the complication image i put into the assest folder. I would like it to look more like the actual complication, not just the placeholder image. For example the Activity app on the corner bezzel tamplate has a complication with rinngs that is not filled, and the word ACTIVITY curverd around. Mine just has an image and "-- --".Thank you in advance.
Posted Last updated
.
Post not yet marked as solved
1 Replies
738 Views
I just installed iOS 13 public beta and when I went to use the reminders app it asked me to update now or later. When I updated the reminders on all my other devices, iPhone 6, iPad mini 3 and MacBook Air all disappeared 😟 Not happy about this because none of my other devices will be getting an update.
Posted Last updated
.