Post

Replies

Boosts

Views

Activity

Reply to Copy/Paste from Textview to Mail App Composer not working - MacCatalyst
Using this code to convert Attributed string into Data for making a pasteboard item. extension NSAttributedString {     var convertToData: Data? {         let options: [NSAttributedString.DocumentAttributeKey: Any] = [             .documentType: NSAttributedString.DocumentType.rtfd,             .characterEncoding: String.Encoding.utf8 ]         let range = NSRange(location: 0, length: length)         return try? data(from: range, documentAttributes: options)     }
Topic: App & System Services SubTopic: General Tags:
Jun ’22
Reply to Copy/Paste from Textview to Mail App Composer not working - MacCatalyst
In the MacCatalyst, Whenever the user copy something with ctrl + c key commands, data is sent to pasteboard by its own method func copy() method. Even overriding copy() method isn't helping.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’22
Reply to Copy/Paste from Textview to Mail App Composer not working - MacCatalyst
Using this code to convert Attributed string into Data for making a pasteboard item. extension NSAttributedString {     var convertToData: Data? {         let options: [NSAttributedString.DocumentAttributeKey: Any] = [             .documentType: NSAttributedString.DocumentType.rtfd,             .characterEncoding: String.Encoding.utf8 ]         let range = NSRange(location: 0, length: length)         return try? data(from: range, documentAttributes: options)     }
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’22
Reply to macOS Catalyst UIPasteboard Video
Anyone found any solution yet?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’22
Reply to Scrollable Plot Area
Have you found the answer yet?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’22
Reply to Does RealityKit ShaderGraphMaterial support face culling?
VisionOS 1.0 currently doesn't support faceCulling.
Topic: Graphics & Games SubTopic: RealityKit Tags:
Replies
Boosts
Views
Activity
Jan ’24