I have met this situation.
Found a solution here
It says if you have the code like bellow
var searchController: UISearchController
You need to change to
var searchController: UISearchController!
or
use optional to avoid it crash.
var searchController: UISearchController
?