Have you done the same for imports where you use CoreNFC?#if canImport(CoreNFC)
import CoreNFC
#endif
Post
Replies
Boosts
Views
Activity
Screenshot of the issue: https://snipboard.io/NXjD86.jpgItems placed into a NSToolbarItemGroup seems to scale correctly. But now it looks even more wierd, as the height of the segmented bar is smaller than the regular buttons.
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
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
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.
Same issue with beta 3. Anyone know how to fix it (if it can)?
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.
Has anyone found a solution for this? I still experience the same issue, even with the public release.
I tried that and also reset of SMC, but without any luck.
For anyone who might experience the same issue. I had to revive the T2 chip firmware before the update could proceed.You need another Mac to do this. Follow this guide:https://support.apple.com/no-no/guide/apple-configurator-2/apdebea5be51/mac
Same issue here.
No worries, might try that out or wait for another update. Just curious, how did you revert to a previous version? Using Time Machine or similar?
Consider enabling sharing of analytics to developer on your iOS device, that way the developer would get your crash report directly. I don't think the Facebook engineers browse this forum for crash reports.
share_with_app_devs
is set to false.
@robertvojta: Yes you can. Actually openradar.me - http://www.openradar.me/ is whitelisted on the new Apple Developer Forums 😃
"ui.post.body.urlWhiteList": 'apple.com,stackoverflow.com,swift.org,example.com,github.com,openradar.me,icloud.com,webkit.org,wikipedia.com,ietf.org,developer.mozilla.org'
Probably a hiccup with App Store Connect.. Happened to me the other day as well. Resubmitting the app worked.