Post

Replies

Boosts

Views

Activity

Reply to Mac Catalyst App Crashing on Catalina with missing symbol UIMarkupTextPrintFormatter
An update I have now even put a check on the code below to try to get around the issue Xcode 14.1(14B7) and I am still getting a crash on Catalina MacCatalyst 13 with the error Termination Reason:    DYLD, [0x4] Symbol missing Application Specific Information: dyld: launch, loading dependent libraries Dyld Error Message: Symbol not found: OBJC_CLASS$_UIMarkupTextPrintFormatter    @available(iOS 14, macCatalyst 14, *)         func printNote() {             let printInfo = UIPrintInfo(dictionary: nil)             printInfo.jobName = noteTitle             printInfo.outputType = .general             printInfo.orientation = .portrait             let formatter = UIMarkupTextPrintFormatter(markupText: htmlForSharing) .... Has anyone else seen this behaviour
Topic: UI Frameworks SubTopic: UIKit Tags:
Oct ’22
Reply to iOS 15 Xcode 13 Console Log for UIBarButton Item with Menu
Claude Here is the code fragment that defines the menu; ` if #available (macCatalyst 14 , iOS 14,  *) {                     let items = UIMenu(title: "", options: .displayInline, children: [                 UIAction(title: helpString, image: UIImage(systemName: "questionmark.circle"), handler: { _ in                     guard let url = URL(string: "https://springnotes.app/help/") else {                         return                     }                     if UIApplication.shared.canOpenURL(url) {                         UIApplication.shared.open(url, options: [:], completionHandler: nil)                     }                 }),                 UIAction(title: outlineString, image: UIImage(systemName: "circle.grid.2x2"), handler: {[unowned self]  _ in self.navigatePopUp(sender: moreButton) }),                 UIAction(title: settingsString, image: UIImage(systemName: "slider.horizontal.3"), handler: {[unowned self]  _ in self.settingsPopUp(sender: moreButton) })             ]) `
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’21
Reply to UITextView select All is broken on Mac Catalyst 16
MacOS 13.1 released and the bug is still present. Surely of 160 members that have read this post someone must have some feedback on this? I really would appreciate it. Thanks
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to Mac Catalyst App Crashing on Catalina with missing symbol UIMarkupTextPrintFormatter
An update I have now even put a check on the code below to try to get around the issue Xcode 14.1(14B7) and I am still getting a crash on Catalina MacCatalyst 13 with the error Termination Reason:    DYLD, [0x4] Symbol missing Application Specific Information: dyld: launch, loading dependent libraries Dyld Error Message: Symbol not found: OBJC_CLASS$_UIMarkupTextPrintFormatter    @available(iOS 14, macCatalyst 14, *)         func printNote() {             let printInfo = UIPrintInfo(dictionary: nil)             printInfo.jobName = noteTitle             printInfo.outputType = .general             printInfo.orientation = .portrait             let formatter = UIMarkupTextPrintFormatter(markupText: htmlForSharing) .... Has anyone else seen this behaviour
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to Xcode 14 failed to prepare iOS 15.7 device?
Same for me here. Does this mean if I archive the app and release to Apple it won't run on a device with iPAdOS 15.7 - the latest Version?
Replies
Boosts
Views
Activity
Sep ’22
Reply to Mac Catalyst: original_application_version app receipt value
Hi Did you ever get to the bottom of this? I am just about to release an upgrade to a catalyst+iOS app and I am running with the idea that the the CFBundleVersion is the value to use for both Catalyst and iOS. Can you confirm?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to ITMS-90338: Non-public API usage for UIPrintInfo, UIPrintInteractionController in Mac Catalyst app
I am having the exact same issue with a macCatalyst app. ITMS-90338: Non-public API usage - The app contains or inherits from non-public classes in UIPrintInfo, UIPrintInteractionController, UIPrintPageRenderer. I have not changed the code in 6 months.
Replies
Boosts
Views
Activity
Jun ’22
Reply to iOS 15 Xcode 13 Console Log for UIBarButton Item with Menu
Claude Here is the code fragment that defines the menu; ` if #available (macCatalyst 14 , iOS 14,  *) {                     let items = UIMenu(title: "", options: .displayInline, children: [                 UIAction(title: helpString, image: UIImage(systemName: "questionmark.circle"), handler: { _ in                     guard let url = URL(string: "https://springnotes.app/help/") else {                         return                     }                     if UIApplication.shared.canOpenURL(url) {                         UIApplication.shared.open(url, options: [:], completionHandler: nil)                     }                 }),                 UIAction(title: outlineString, image: UIImage(systemName: "circle.grid.2x2"), handler: {[unowned self]  _ in self.navigatePopUp(sender: moreButton) }),                 UIAction(title: settingsString, image: UIImage(systemName: "slider.horizontal.3"), handler: {[unowned self]  _ in self.settingsPopUp(sender: moreButton) })             ]) `
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Sep ’21