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 deprecated by Apple on November 5, 2019
if you ever try to submit your app that build with Xcode 11.2 to the AppStore, you will be rejected:
App Store Connect Operation Warning
WARNING ITMS-90703: "Deprecated Xcode Build. Due to resolved app archives issues, we have deprecated Xcode 11.2 on November 5, 2019. Download Xcode 11.2.1 or newer, rebuild your app and resubmit."
So all workarounds done with the Xcode 11.2 is useless
It's a bug for Xcode 11.2, and fixed in Xcode 11.2.1.
Solution(s)
Roll back to previous Xcode release version from: Rollback is not an option anymore and AppStore will reject any build with Xcode below 11.2.1 take a look at this
https://developer.apple.com/services-account/download?path=/Developer_Tools/Xcode_11.1/Xcode_11.1.xip
Note that you should use Safari to download it and you must first login to Apple developer portal.
You can find all other Xcode versions and other resources link (including release and beta versions) here at https://developer.apple.com/download/more
The workaround
This is very hard but working workaround.
Replace all UITextView
s in storyboards and Xibs with the pure code version.
Note that this bug is found and fixed by Apple
Also earlier, the bug was confirmed by Apple Staff edford
For those with iOS 13.2 and can not use Xcode 11.1 anymore:
- Update macOS to 10.15.1 or later
- Install Xcode 11.2.1 or later
- It should be work now on the updated device.
For those with storyboard:
- Subclass
UITextView
- Assign it to all
UITextView
objects
- Don't forget to update any property changes that may lose in the subclassing.
For those comfortable with method swizzling (Objc and dynamic behavior)
Head to the @aftab muhammed khan answer for Objective-C and @MikRo answer for Swift adapted version
Just don't do it anymore:
Even if these last two swizzling workarounds are not using Apple private API, they will be rejected in AppStore because Apple will not accept builds with Xcode versions under 11.2.1!
And once again:
Xcode 11.2 is deprecated by Apple on November 5, 2019
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…