搜索结果未使用自动完成功能进行更新

时间:2015-02-02 18:23:33

标签: ios swift autocomplete ios8 uisearchbar

我正在快速构建一个应用程序,要求能够搜索城市,我希望搜索能够自动完成。

所以我开始在xib中创建一个视图控制器,其中包含一个带有相关控制器的UISearch栏。我为视图控制器编写的类如下:

import UIKit

class LocationViewController: UIViewController, UISearchBarDelegate, UITableViewDataSource, UITableViewDelegate, UISearchControllerDelegate {

    // MARK: - Properties

    var dirty: Bool = false
    var loading: Bool = false
    var suggestions: Array<String> = [] {
        didSet {
            searchDisplayController?.searchResultsTableView.reloadData()
        }
    }

    // MARK: - Initialization

    override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: NSBundle?) {
        super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
    }

    required init(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
    }

    override func viewDidLoad() {
        searchDisplayController?.searchBar.placeholder = "Ville ou adresse"
    }

    // MARK: - UISearchBarDelegate

    func searchBar(searchBar: UISearchBar, textDidChange searchText: String) {

        if countElements(searchText) > 0 {
            if (loading) {
                dirty = true
            } else {
                loadSearchSuggestions()
            }
        }
    }

    func searchBarCancelButtonClicked(searchBar: UISearchBar) {
        suggestions = []
    }

    // MARK: - Search backend

    func loadSearchSuggestions() {

        loading = true

        var query = searchDisplayController?.searchBar.text
        var urlEncode = query!.stringByAddingPercentEncodingWithAllowedCharacters(.URLHostAllowedCharacterSet())!
        var urlString = "https://maps.googleapis.com/maps/api/place/autocomplete/json?key=MYAPIKEY&components=country:FR&input=\(urlEncode)"

        var request = NSURLRequest(URL: NSURL(string: urlString)!)
        var session = NSURLSession.sharedSession()

        var task = session.dataTaskWithRequest(request, completionHandler: {data, response, error -> Void in

            if (error != nil) {
                self.loading = false
                println(error.localizedDescription)
                return
            }

            var err: NSError?

            var jsonResult = NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.MutableContainers, error: &err) as Dictionary<String,AnyObject>

            var predictions = jsonResult["predictions"] as Array<AnyObject>

            var currentSug: Array<String> = []

            for prediction in predictions {
                var predDict = prediction  as Dictionary<String, AnyObject>

                var adress = predDict["description"] as String

                currentSug.append(adress)

            }

            if err != nil {
                println("JSON Error in search \(err!.localizedDescription)")
                return
            }

            self.suggestions = currentSug

            if self.dirty {
                self.dirty = false
                self.loadSearchSuggestions()
            }

            self.loading = false
        })

        task.resume()
    }

    // MARK: - UITableViewDataSource

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {


        let cellIdentifier = "suggestCell"

        var cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier) as UITableViewCell?

        if cell == nil {
            cell = UITableViewCell(style: .Default, reuseIdentifier: cellIdentifier)
        }

        if suggestions.count > 0 {
            cell!.textLabel!.text = suggestions[indexPath.row]
        }

        return cell!
    }

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return suggestions.count
    }
}

一切正常,直到一点。当我在搜索框中写一封信时,请求有效,我得到的结果存储在我的建议变量中。

唯一的问题是:包含结果的表视图没有按原样重新加载(如来自suggest var的didSet中所指定的)。除非我尝试滚动空列表。

现在,如果我键入第二个字符,我的表格视图会显示仅输入一个字符时的结果。如果我尝试滚动,那么我会得到正确的结果。

非常感谢您花时间回答我的问题。我可能在我的代码中犯了错误,因为我对swift和编程一般都很陌生。

1 个答案:

答案 0 :(得分:0)

答案很简单,我不能看到它!

对Google API的查询是异步完成的,另一方面,UI的更新需要同步完成。

以下是self.loading = falseLoadSearchSuggestions之后的缺失代码:

self.loading = false

dispatch_async(dispatch_get_main_queue(), {
    searchDisplayController?.searchResultsTableView.reloadData()
})

这就是诀窍,希望它有助于某人!