Post

Replies

Boosts

Views

Activity

Comment on The async/await API crashes in Xcode 16.3 and later
I'd like to clarify: are you sure that you're using the async/await API specifically? At one point during my research, I thought I had fixed the crash by using this API, but I was mistaken. Here is the code I wrote: func setAppIcon(with name: String?) { UIApplication.shared.setAlternateIconName(name) } In fact, I was actually using the API with a completion block.
Jul ’25
Comment on Xcode build time frustration
I returned with my feedback. Initially, my issue wasn’t with local builds, but rather with our CI system. However, I had overlooked this detail. The problem was actually with the xcodebuild formatter that Fastlane uses. By simply changing xcpretty to xcbeautify, I resolved the issue, and our compile timings returned to being acceptable for us 😎
Nov ’24