Smart-search for Parse Usernames in Swift not working

You will want to implement the UISearchResultsUpdating protocol to achieve this. It uses a UISearchController (introduced in iOS 8) which has to be added programmatically instead of through the storyboard, but don’t worry, it’s pretty straight-forward. This should get the job done for you Cheers, Russell class YourTableViewController: UITableViewController, UISearchBarDelegate, UISearchResultsUpdating { var searchUsers: [PFUser] … Read more