我的swift
应用程序允许用户通过OMDB数据库搜索电影。我试图弄清楚每次搜索如何返回超过10个结果。 searchKeyword是用户输入以搜索电影的字符串值。我使用swiftyJSON来提取Json数据。
. . .
//store search url
let urlComponents = NSURLComponents(string: "https://www.omdbapi.com/")!
urlComponents.query = "s=\"\(searchKeyword)\""
let url = urlComponents.URL!
//extract json
let json = getJSON(url.absoluteString)
//How do I ensure that 50 items are downloaded here?
if let items = json["Search"].array {
for item in items {
...
extract data needed from item
}