0

我有一个教程中的代码:

// 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];

什么是 SomeService 以及如何下载它?

(我在谷歌搜索。)

4

1 回答 1

1

这很可能是一个演示课,你将无法在网上找到它,你必须参考同课教程才能获得这门课

正如评论所说

只是一个代表一些的虚拟类

所以没有你会发现的类被称为SomeService

于 2012-06-28T13:06:24.850 回答