Post

Replies

Boosts

Views

Activity

Reply to Partitioning Scheme
There isn't any official word that things are different with other devices, but the truth is they don't need to be because the underlying partition scheme (like GPT) has taken a back seat to APFS containers and volumes. All disk/volume advances in recent years (10.13+) have been for APFS itself, like the readonly system volume (Volume Groups, firmlinks), etc.
Jul ’20
Reply to PostInstall script not running on MacOS
It would be best to post the error messages from the log here (they will likely describe the exact issue), but you might just try changing the interpreter to "/bin/bash". Normally macOS installers don't open installed targets on the user's behalf (installers just install), and the only other case would be to load and start a service, which usually involves launchctl(1).
Jul ’20
Reply to Best macOS Development Resources?
If you mention something specific you can't figure out, it might help point you in the right direction. Having said that, the tide has really gone out on documentation for some parts of macOS, so checking the Archive - https://developer.apple.com/library/archive/navigation/ for examples might help.
Jul ’20
Reply to how to allow software blocked when loading
The phrase "system software" usually means kernel extensions (drivers, in Windows-speak), so the place to look would be System Information > Software > Extensions. Having seen this before, it's likely you're using policy-restricted extensions which would have (or did) present warnings in Catalina. These are now deprecated, and while a boot argument can be used to reenable them in the beta, they will likely be permanently disabled in the release. The list of extensions will indicate which aren't loadable (look for Unsupported, and not from Apple), and you'll find that the list to be enabled in System Preferences excludes these. The way it currently works is all third party extensions get rebuilt in a collection (documented in kmutil(8) - x-man-page://kmutil), so everything gets retriggered.
Jul ’20
Reply to How to export a SwiftUI View to PDF (Vector)
Someone will provide a more knowledgeable answer, but it looks like only text comes across right now. GeometryReader/ResolvedShapeView/etc don't emit anything, maybe because they're implemented GPU-side when possible (like a fill with masking, CoreAnimation-style). If you want to always be able to access accurate PDF representations, try CoreGraphics.
Jul ’20