我有一篇教程中的代码:
// 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以及如何下载?
(我在谷歌上搜索了一下。)
发布于 2012-06-28 21:06:25
这很可能是一个演示类,您将无法在网上找到它,您必须参考相同的类教程才能获得此类
正如评论所说
只是一个虚拟类,表示一些
因此,您不会找到名为SomeService的类
https://stackoverflow.com/questions/11245305
复制相似问题