1

我正在尝试在我的视图控制器中设置地址自动完成功能,这样用户就不必输入整个地址,而是从搜索文本字段下方选择它。这是我的控制器的样子:

import Foundation
import UIKit
import MapKit


extension AddNewAddressViewController: MKLocalSearchCompleterDelegate {

    func completerDidUpdateResults(_ completer: MKLocalSearchCompleter) {
        searchResults = completer.results
        searchResultsTableView.reloadData()
    }

    func completer(_ completer: MKLocalSearchCompleter, didFailWithError error: Error) {
        // handle error
    }
}

class AddNewAddressViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

    var searchCompleter = MKLocalSearchCompleter()
    var searchResults = [MKLocalSearchCompletion]()


    override func viewDidLoad() {

        searchCompleter.delegate = self

        searchCompleter.queryFragment = addressSearch.text!

        searchResultsTableView.dataSource = self

        super.viewDidLoad()
    }



    @IBOutlet weak var addressSearch: UITextField!
    @IBOutlet weak var searchResultsTableView: UITableView!


    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        let searchResultsCount = searchResults.count
        return searchResultsCount
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let searchResult = searchResults[indexPath.row]
        let cell = UITableViewCell(style: .subtitle, reuseIdentifier: nil)
        cell.textLabel?.text = searchResult.title
        cell.detailTextLabel?.text = searchResult.subtitle
        return cell
    }

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    }


    @IBAction func defaultAddressButton(_ sender: Any) {
    }

    @IBAction func addAddressButton(_ sender: Any) {
    }

}

我收到一条错误消息:

类型 AddNewAddressViewController 不符合协议 'UITableViewDataSource'

我错过了什么?

提前致谢。

4

1 回答 1

1

您省略了 cellForRowAtIndexPath 声明的第一个参数的下划线,这在 swift 3.0 下是必需的:

func tableView(_ tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
[etc.]

因此,您没有与预期签名匹配的必需函数。

于 2016-12-14T19:45:20.603 回答