Sure. The implementation depends on how you set up your UITableView, but assuming you're using NSFetchedResultsControllers, you could do this:
1) Let's say you have 3 scope bar buttons; create 4 NSFRCs.
2) Create fetch requests for the first 3 NSFRCs, each with a predicate to select only the relevant scope for the corresponding scope bar button.
3) Use the final NSFRC for the search functionality. See Brent Piddy's post on How to filter NSFetchedResultsController (CoreData) with UISearchDisplayController/UISearchBar for details on how to implement search if you've not already done so.
4) When the user taps a scope bar button, do not write any text into the search bar but rather just swap in the relevant NFC. Highlight the button (or consider using a UISegmentedControl) so the user can see what scope they're looking at.
5) When the user types text into the search bar, swap in the search bar NSFRC as detailed in Brent's post above. Remove any highlighting on the buttons or UISegmentedControl and leave the search bar on screen with the user's text so, again, they can see what scope they're looking at.