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