Mam kod, który tworzy UISearchController' in my UIVIew's
viewDidLoad`.
self.resultSearchController = ({
let controller = UISearchController(searchResultsController: nil)
controller.searchResultsUpdater = self
controller.searchBar.delegate = self
controller.dimsBackgroundDuringPresentation = false
controller.searchBar.sizeToFit()
controller.hidesNavigationBarDuringPresentation = false //prevent search bar from moving
controller.searchBar.placeholder = "Search for song"
self.myTableView.tableHeaderView = controller.searchBar
return controller
})()
Zaraz po zakończeniu tego zamknięcia w konsoli pojawi się to ostrzeżenie:
Attempting to load the view of a view controller while it is deallocating is not allowed and may result in undefined behavior (<UISearchController: 0x154d39700>)
Nie rozumiem tego, co robię źle. To podobne pytanie nie jest tak naprawdę moją sytuacją (przynajmniej nie sądzę). Co się dzieje?
viewDidLoad()
. Zalecamy a) w tym całą listę źródeł VC oraz b) upewnienie się, że błąd rzeczywiście występuje tam, gdzie myślisz, że jest.