Post

Replies

Boosts

Views

Activity

Comment on Crash on launch from all TestFlight builds, but when loading the app from Xcode
If I am correct you cannot mix Swift and Objective-C in one target. In one package, or all (depending on how your packages depend on each other) add an additional target where you place the Objective C files of the fix (or if you have already an objective-C target, you could add them there). Target definition should be something like: .target(name: "DecimalRoundFix", dependencies: []). Make sure that the header file is placed in the special folder named 'DecimalRoundFix/include'.
Sep ’24
Comment on ControlWidgetToggle state when parent app is terminated
Thank you for your answer. It then seems to me something is lacking, it would be nice if the ControlWidgetToggle would be informed when the parent app is terminated. I have submitted a suggestion using the feedback assistant.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’24
Comment on Crash on launch from all TestFlight builds, but when loading the app from Xcode
The .m file can be placed in the folder 'DecimalRoundFix. Add "DecimalRoundFix" to the dependencies of your main target. You can then use @import DecimalRoundFix to import the fix in your swift code. When finished, write a XCTest to test your code to make sure that everything works as it should.
Replies
Boosts
Views
Activity
Sep ’24
Comment on Crash on launch from all TestFlight builds, but when loading the app from Xcode
If I am correct you cannot mix Swift and Objective-C in one target. In one package, or all (depending on how your packages depend on each other) add an additional target where you place the Objective C files of the fix (or if you have already an objective-C target, you could add them there). Target definition should be something like: .target(name: "DecimalRoundFix", dependencies: []). Make sure that the header file is placed in the special folder named 'DecimalRoundFix/include'.
Replies
Boosts
Views
Activity
Sep ’24
Comment on File transfer issue from iPhone to Watch after iOS 17.5 & WatchOS 10.5 update
Yes works in production.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’24
Comment on Mac Catalyst Menu Bar/Toolbar Actions Not Validating Properly After Changing Active Windows
Thanks a lot for this comment. I was struggling for a day with this issue until I saw your solution. After I removed a NSToolbarItem(itemIdentifier: itemIdentifier, barButtonItem: barButtonItem) from the toolbar, all my windows and tabs responded to key commands as expected.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Dec ’23