theShay
theShay

Reputation: 247

SomeService UISearchBar

i have this code from a tutorial:

// Do the search and show the results in tableview
// Deactivate the UISearchBar

// You'll probably want to do this on another thread
// SomeService is just a dummy class representing some 
// api that you are using to do the search
NSArray *results = [SomeService doSearch:searchBar.text];

what is the SomeService and how to download it?

(i searched at google.)

Upvotes: 0

Views: 89

Answers (1)

Omar Abdelhafith
Omar Abdelhafith

Reputation: 21221

This is most likely a demo class, you will not be able to find it online, you must refer to the same class tutorial to get this class

As the comment says

is just a dummy class representing some

So there is no class that you will find called SomeService

Upvotes: 1

Related Questions