This is my initial return to using OSX for development. I simple built an empty OSX 26.2 app and added the source files. The initial compile fails in of places like these:
Errors like these:
CornerFixApp.swift: Type 'Preferences' does not conform to protocol 'ObservableObject'
Preferences.swift: Property 'objectWillChange' is not available due to missing import of defining module 'Combine'
Also, there are plenty of Deprecated methods be used in this application like this:
Xcode complains about a large number of deprecation issues like in CornerFixApp.swift: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use onChange with a two or zero parameter action closure instead.
Has anyone run this code on the current release, because I sure am tired of all the rounded corner junk, but the fix has to compile on the current releases, including MacBooks (Pro and Air)
This is my initial return to using OSX for development. I simple built an empty OSX 26.2 app and added the source files. The initial compile fails in of places like these:
Errors like these:
CornerFixApp.swift: Type 'Preferences' does not conform to protocol 'ObservableObject'
Preferences.swift: Property 'objectWillChange' is not available due to missing import of defining module 'Combine'
Also, there are plenty of Deprecated methods be used in this application like this:
Xcode complains about a large number of deprecation issues like in CornerFixApp.swift: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use
onChangewith a two or zero parameter action closure instead.Has anyone run this code on the current release, because I sure am tired of all the rounded corner junk, but the fix has to compile on the current releases, including MacBooks (Pro and Air)