Post

Replies

Boosts

Views

Activity

Reply to Crash on "Library not loaded: /usr/lib/swift/libswiftWebKit.dylib" when use XCode 16.3, iOS 18.4
Seems like there's a simple fix to this: Add an environment variable for the missing fallback directory. For example: DYLD_FALLBACK_LIBRARY_PATH=/Library/Developer/CoreSimulator/Volumes/iOS_22F77/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 18.5.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/usr/lib/swift The same as the above would apply to a different simulator combo.
Jun ’25
Reply to Crashing when going from Compact to Two Over Secondary in UISplitViewController on iPadOS 17
This is something I've been struggling with for some time. The hierarchy of my app makes this harder to diagnose. But like you, it was working fine for years. In my case, this app supported three column-layouts prior to the release of column-based split views. In order to do so, we have a concept of a NestedSplitViewController -- which is a UIViewController that owns a UISplitView. We're running into the same issue with Xcode 15 – and can't seem to pin it down.
Topic: UI Frameworks SubTopic: UIKit Tags:
Feb ’24
Reply to UIGlassEffect can leave an unusual grey shadow around the view
@NSCruiser Actually, I have a solution: Set the collectionView and whatever container the collection is in to not mask their bounds: layer.masksTobounds = false collectionView.layer.masksToBounds = false
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Aug ’25
Reply to UIGlassEffect can leave an unusual grey shadow around the view
@NSCruiser interesting. The odd part is that it seems fine in the context of our iPad app, but has the grey-shadow-bg on iOS only. Maybe worth exploring the concept of shifting to a UIScrollView given I have few elements here.
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Aug ’25
Reply to Crash on "Library not loaded: /usr/lib/swift/libswiftWebKit.dylib" when use XCode 16.3, iOS 18.4
Seems like there's a simple fix to this: Add an environment variable for the missing fallback directory. For example: DYLD_FALLBACK_LIBRARY_PATH=/Library/Developer/CoreSimulator/Volumes/iOS_22F77/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 18.5.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/usr/lib/swift The same as the above would apply to a different simulator combo.
Replies
Boosts
Views
Activity
Jun ’25
Reply to Xcode 15.3 crippled with "internal inconsistency error"
I run into this every time I swap branches and my xcodeproj file changes in one way or another. I have to Resolve Package Dependencies manually every time.
Replies
Boosts
Views
Activity
Apr ’24
Reply to Crashing when going from Compact to Two Over Secondary in UISplitViewController on iPadOS 17
This is something I've been struggling with for some time. The hierarchy of my app makes this harder to diagnose. But like you, it was working fine for years. In my case, this app supported three column-layouts prior to the release of column-based split views. In order to do so, we have a concept of a NestedSplitViewController -- which is a UIViewController that owns a UISplitView. We're running into the same issue with Xcode 15 – and can't seem to pin it down.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Feb ’24