Post

Replies

Boosts

Views

Activity

Reply to LibcOverlayShims.h compile failure
I ended up figuring this out months later. Our software ships with this folder /usr/local/opt/company_name that contains a few libraries, software packages, etc. Our Swift code links with a number of them, so it was easiest to set Xcode to recursively search that directory for both headers and libraries rather than individually specifying them. For some rather painful reasons, a copy of python is actually shipped in that folder. Well turns out some header file in that python directory was making Xcode very unhappy and triggering that compiler error. I manually specified the libraries we needed to link against and problem solved.
Topic: Programming Languages SubTopic: Swift Tags:
Apr ’21
Reply to Setting PDF to open with Adobe Acrobat Reader uses Preview to open instead, how to fix?
Try installing duti via brew install duti. Then run duti -s com.adobe.Reader com.adobe.pdf all to set Adobe Reader to open all PDF documents. Note that I don't actually have Adobe Reader so the com.adobe.Reader bundle id may be wrong. If so, navigate to the application in Applications>right click it>show package contents>Contents. Open Info.plist and find the Bundle identifier to replace in that command.
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’23
Reply to iOS 17 Beta Breaks activityBackgroundTint(_:) on Live Activities
iOS 17.1 beta 2/3 has actually made this problem worse. @Environment(\.colorScheme) var colorScheme Always returns light mode. Attempting to use UIColor { traitCollection in traitCollection == .light ? .white : .black } is again always white. Color(uiColor: UIColor.systemBackground) is also always white. So everything adapts properly until you actually try to write code to modify it. I can't figure out anyway to make the background transparent without it getting stuck in light mode. .clear as the color works in dark mode, but makes the text illegible in light mode.
Oct ’23
Reply to carplay simulator accessory not supported
Did anyone end up figuring this out? This is working fine on one of my machines, but not another. There are some suspicious parts of the log on the non working machine default 09:18:10.075726-0400 mobileactivationd Client certification requested by CarPlay Simulator error 09:18:10.088862-0400 CarPlay Simulator Failed to obtain valid certificates from server: <private> error 09:18:10.103753-0400 CarPlay Simulator Incoming message ID 0xaa04 AuthenticationFailed and error 09:18:09.452387-0400 CarPlaySimulatorDeviceLink RemotePairing.framework is not available. default 09:18:09.452419-0400 CarPlaySimulatorDeviceLink RemotePairing.framework not found. Meanwhile the working machine according to Activity Monitor is loading /Library/Apple/System/Library/PrivateFrameworks/RemotePairing.framework/Versions/A/RemotePairing just fine. The non working machine does have that file on disk.
Topic: App & System Services SubTopic: Hardware Tags:
May ’24
Reply to LibcOverlayShims.h compile failure
I ended up figuring this out months later. Our software ships with this folder /usr/local/opt/company_name that contains a few libraries, software packages, etc. Our Swift code links with a number of them, so it was easiest to set Xcode to recursively search that directory for both headers and libraries rather than individually specifying them. For some rather painful reasons, a copy of python is actually shipped in that folder. Well turns out some header file in that python directory was making Xcode very unhappy and triggering that compiler error. I manually specified the libraries we needed to link against and problem solved.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Apr ’21
Reply to Xcode 13 typing is delayed / really slow
This is definitely not fixed in 13.2.1. 13.3 beta 1 I can't really tell because that has it's own issues preventing the project from compiling
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jan ’22
Reply to Setting PDF to open with Adobe Acrobat Reader uses Preview to open instead, how to fix?
Try installing duti via brew install duti. Then run duti -s com.adobe.Reader com.adobe.pdf all to set Adobe Reader to open all PDF documents. Note that I don't actually have Adobe Reader so the com.adobe.Reader bundle id may be wrong. If so, navigate to the application in Applications>right click it>show package contents>Contents. Open Info.plist and find the Bundle identifier to replace in that command.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’23
Reply to iOS 17 Beta Breaks activityBackgroundTint(_:) on Live Activities
Same issue here on the release candidate. Blake, have you heard back on your TSI?
Replies
Boosts
Views
Activity
Sep ’23
Reply to iOS 17 Beta Breaks activityBackgroundTint(_:) on Live Activities
Just as a quick follow up, I was able to get transparency to match the system by doing .activityBackgroundTint(.black.opacity(0.4)) However, it's still stuck in dark mode
Replies
Boosts
Views
Activity
Sep ’23
Reply to iOS 17 beta 4: Live Activity on lock screen is always rendered in dark mode
@Gong I'm seeing the background and text change properly, but @Environment(\.colorScheme) var colorScheme is always returning light, are you seeing the same?
Replies
Boosts
Views
Activity
Oct ’23
Reply to iOS 17 Beta Breaks activityBackgroundTint(_:) on Live Activities
iOS 17.1 beta 2/3 has actually made this problem worse. @Environment(\.colorScheme) var colorScheme Always returns light mode. Attempting to use UIColor { traitCollection in traitCollection == .light ? .white : .black } is again always white. Color(uiColor: UIColor.systemBackground) is also always white. So everything adapts properly until you actually try to write code to modify it. I can't figure out anyway to make the background transparent without it getting stuck in light mode. .clear as the color works in dark mode, but makes the text illegible in light mode.
Replies
Boosts
Views
Activity
Oct ’23
Reply to carplay simulator accessory not supported
Did anyone end up figuring this out? This is working fine on one of my machines, but not another. There are some suspicious parts of the log on the non working machine default 09:18:10.075726-0400 mobileactivationd Client certification requested by CarPlay Simulator error 09:18:10.088862-0400 CarPlay Simulator Failed to obtain valid certificates from server: <private> error 09:18:10.103753-0400 CarPlay Simulator Incoming message ID 0xaa04 AuthenticationFailed and error 09:18:09.452387-0400 CarPlaySimulatorDeviceLink RemotePairing.framework is not available. default 09:18:09.452419-0400 CarPlaySimulatorDeviceLink RemotePairing.framework not found. Meanwhile the working machine according to Activity Monitor is loading /Library/Apple/System/Library/PrivateFrameworks/RemotePairing.framework/Versions/A/RemotePairing just fine. The non working machine does have that file on disk.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to Xcode 16 RC can't send app for App Store Connect !!
I have the same, I’m guessing it’ll be available in a few hours or tomorrow
Replies
Boosts
Views
Activity
Sep ’24
Reply to WKWebView evaluateJavascript method crash with async/await when javascript call doesn't have return value
Still crashing on Xcode 16.0 and iOS 18.0
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’24