Post

Replies

Boosts

Views

Activity

Reply to Resize SF Symbol in Mac Catalyst Toolbar
This workaround / extension on UIImage fixed the issue:#if targetEnvironment(macCatalyst) extension UIImage { func symbolForNSToolbar() -> UIImage? { guard let symbol = applyingSymbolConfiguration(.init(pointSize: 13)) else { return nil } let format = UIGraphicsImageRendererFormat() format.preferredRange = .standard return UIGraphicsImageRenderer(size: symbol.size, format: format).image { _ in symbol.draw(at: .zero) }.withRenderingMode(.alwaysTemplate) } } #endif
Apr ’20
Reply to Test app in sandbox
Found a way to remove the items in the entitlements file when building for the Mac Catalyst target. When doing that, I was able to export the app using "Developer ID".Add a "Run Script" step in the build tabif [ "${IS_MACCATALYST}" = "YES" ]; then ENTITLEMENTS_FILE="${TARGET_TEMP_DIR}/${FULL_PRODUCT_NAME}.xcent" plutil -remove "com\.apple\.developer\.nfc\.readersession\.formats" "${ENTITLEMENTS_FILE}" plutil -remove "com\.apple\.developer\.siri" "${ENTITLEMENTS_FILE}" fi
Apr ’20
Reply to 10.15.5 Developer Beta 2 not installing
Developer Beta 2 does not install on my machine either. When I click "Download and Install", after downloading the update it presents an error message saying that an error occoured during installation. According to what I can see in the logs, it's failing during firmware update of the Touch Bar.I'm using the latest MPB 16-inch. Have also reported this issue to Apple with feedback ID FB7667446.
Apr ’20
Reply to 10.15.5B4 failing to install
Same issue here (same with the previous betas). Reported it to Apple, but havent got any feedback on it (FB7667446).Tried forcing the update, but that didn't help either.softwareupdate -i "macOS Catalina 10.15.5 Developer Beta-4" --force Software Update Tool Downloaded macOS Catalina 10.15.5 Developer Beta Preparing macOS Catalina 10.15.5 Developer Beta Error downloading macOS Catalina 10.15.5 Developer Beta: Det oppsto en feil under installering av oppdateringen. Done. Error downloading updates.
May ’20