Could not find module for target ‘x86_64-apple-ios-simulator’

To solve this issue I had to create a fat library of my custom framework again using xcode 11 tools. To do that I did the following: 1) Build YourCustomFramework target for iOS simulator and extract framework from products folder on your desktop. Xcode⁩ ▸ ⁨DerivedData⁩ ▸ ⁨Your Project ▸ ⁨Build⁩ ▸ ⁨Products⁩ ▸ ⁨Release-iphonesimulator … Read more

“Do Not Embed”, “Embed & Sign”, “Embed Without Signing”. What are they?. What they do?

As already stated by @przemyslaw-jablonski, this is similar to what was in XCode 10, but in only one screen (which I personally like!). Embedding Do not embed static frameworks and libraries (linking happens at build time), only shared ones (dynamic linking happens at run time, so they need to be in your bundle). file frameworkToLink.framework/frameworkToLink … Read more

After upgrading to Xcode 11.2 from Xcode 11.1, app crashes due to _UITextLayoutView

Update: Fixed! 🎉🎊 The ONLY Solution is to update This bug is fixed in Xcode 11.2.1. So you can download and use it from here. Storyboards containing a UITextView will no longer cause the app to crash on operating system versions earlier than iOS 13.2, tvOS 13.2, or macOS 10.15.2. (56808566, 56873523) Xcode 11.2 is … Read more