Hi,
I have a UITableView to which I've added search capability using UISearchController. The search basically helps filter a potentially long table. The search works fine. But once the items are dispalyed using UISearchController I have a toolbar that allows things to be done on the items found; for example, share or delete. All my operations are always confirmed with a UIAlertController. But when I try to display my UIAlertController (still with the SearchController active) I get the message:
Warning: Attempt to present <UIAlertController: 0x7b847250> on <DataTableViewController: 0x7c9b9e00> which is already presenting <UISearchController: 0x7b8cabe0>
If I have t force the app to exit searchcontroller then th user looses the benefits of being able to search.
Is there a way to work around this issue?
Suggestions, please.