Post

Replies

Boosts

Views

Activity

Reply to @AppStorage with Date in SwiftUI
extension Date: RawRepresentable { public var rawValue: String { self.timeIntervalSinceReferenceDate.description } public init?(rawValue: String) { self = Date(timeIntervalSinceReferenceDate: Double(rawValue) ?? 0.0) } } This one works Thank you!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Aug ’21
Reply to @AppStorage with Date in SwiftUI
extension Date: RawRepresentable { public var rawValue: String { self.timeIntervalSinceReferenceDate.description } public init?(rawValue: String) { self = Date(timeIntervalSinceReferenceDate: Double(rawValue) ?? 0.0) } } This one works Thank you!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Aug ’21
Reply to PersistenceController and CloudKit
Your code makes CloudKit work but stops the widget extension from connecting to the CoreData Database. Thank you for your time.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Aug ’21