Has anyone discovered a workaround? This is a pretty serious issue
Post
Replies
Boosts
Views
Activity
The best workaround I have found is to disable UIView animations before performing the update and opening the keyboard again, but even with this, the keyboard blinks and typing isn't very smooth.
UIView.setAnimationsEnabled(false)
self.collectionView.reloadSections(myIndexSet)
self.header?.searchBar.becomeFirstResponder()
//we need to re-enable animations at some point. For a naive solute, just re-enable it after a short delay
delay(0.2) { UIView.setAnimationsEnabled(true) }