Post

Replies

Boosts

Views

Activity

Live Activities Buttons
I want to add a button to my live activity which stops a timer. The docs say to use a URL deep link, which works fine, however it forces the App to open. I want the timer to stop after the button is pressed and end the live activity without opening my app, like the built in Clock.app timer works. Is this possible?
2
0
2.4k
Sep ’22
Debugger unable to show value for Date but can for NSDate
Issue noticed when upgrading to Xcode 12. Whilst debugging Swift code I noticed that variables of type Date show no value in the debuggers variable view. notificationDate (Date) If I put a cast in my Swift code to NSDate: let nsNotificationDate = notificationDate as NSDate Then it shows a value in the debugger variables view: notificationDate = (NSDate) 2020-09-17 16:58:40 UTC If I 'po' the Date variable in the debug console I can see its value. Printing description of notificationDate: ▿ 2020-09-17 16:58:40 +0000   - timeIntervalSinceReferenceDate : 622054720.023765 If I 'po' the NSDate cast version I can also see its value. Printing description of nsNotificationDate: 2020-09-17 16:58:40 +0000 I've not noticed this happening pre Xcode 12 so think its a new Xcode bug.. anyone else notice this or have any pointers?
2
0
1.2k
Sep ’20