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
Comment on The async/await API crashes in Xcode 16.3 and later
Which version of Swift do you use?
Replies
Boosts
Views
Activity
Jul ’25
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.
Replies
Boosts
Views
Activity
Jul ’25
Comment on Xcode build time frustration
We use Fastlane in our CI system. Therefore, we've replaced all the methods that we used and that had the xcodebuild_formatter argument.
Replies
Boosts
Views
Activity
Jan ’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 😎
Replies
Boosts
Views
Activity
Nov ’24
Comment on NWConnection is crashed on iOS 15 and 16, but it works well on 17
Yes, the problem still exists in my project. However, I can't say that it's some major concern for me, but I'd like to utilize more convenient method that works in iOS 17+. In addition, it's very curious why the API doesn't work well in iOS 16.
Replies
Boosts
Views
Activity
Oct ’24