UITableView 无法识别 NumberOfRowsInSection

UITableView unrecognized NumberOfRowsInSection

我收到这个错误。 我正在使用 SQLite。我有一些数据,我想在部分中显示数据,所以我添加了一列作为我的部分名称,称为 "cittaTerritorio"。 现在我正在检索我的数据并使用此列对其进行排序, 当我 运行 代码一切都崩溃并显示此消息时:

-[UIView tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0x101c3ce50 2017-10-14 17:14:44.893258+0200 MinistryHelp[403:44322] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIView tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0x101c3ce50' * First throw call stack: (0x1812b3d38 0x1807c8528 0x1812c11f8 0x18aa7bcc4 0x1812b96e4 0x18119f0dc 0x18aa02cc8 0x18a7908d8 0x18a7900a4 0x18a78fe34 0x18a78fc44 0x18a81c14c 0x1008cfc60 0x1008cf040 0x1008cfedc 0x18a6c3bfc 0x18a76c128 0x18a76b5c8 0x18a76afcc 0x18a76aa34 0x18a76a95c 0x18a6c1000 0x1852910b4 0x185295194 0x185203f24 0x18522a340 0x18522b180 0x18125b8b8 0x181259270 0x18125982c 0x18117a2d8 0x18300bf84 0x18a727880 0x1008c62d0 0x180c9e56c) libc++abi.dylib: terminating with uncaught exception of type NSException

你有什么想法吗?那是我的代码:

    func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    return self.listCitta()[section]
}

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

func numberOfSections(in tableView: UITableView) -> Int {
    return self.listCitta().count
}

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return self.listCitta().count
}

func territoriInCitta(section: Int)-> [String]{
    let nomeSezione = tableview.headerView(forSection: section)?.textLabel?.text
    var listaCitta = [String]()
    listaCitta.removeAll()
    do{
        let territori = try self.database.prepare(territoryTable.filter(cittaTerritorio == nomeSezione!))
        for territorio in territori{
            listaCitta.append(territorio[self.cittaTerritorio])
        }
    }catch{
        print(error)
    }
    return listaCitta
}

func listCitta()-> [String]{ //aggiunge i vari nomi delle citta
    var listaCitta = [String]()
    listaCitta.removeAll()
    do{
        let terr = try self.database.prepare(territoryTable.select(cittaTerritorio))
        for territorio in terr{
            if listaCitta.contains(territorio[self.cittaTerritorio]){
                //nil
            }
            else{
                listaCitta.append(territorio[self.cittaTerritorio])
            }
        }
    }catch{
        print(error)
    }
    return listaCitta
}

使用第一个函数,我根据列表的索引获取部分名称我的方法 returns。 第二个功能 returns 基于该部分的数据数量,因此我根据该部分名称过滤数据,而不是 return 使用列表的数量。 第三种和第四种方法return节数

我也试过插入假数据,写一个数字进行测试,没有什么不同。

所有的委托和数据源都设置好了吗?如果不是,请在 viewDidLoad() 方法中尝试此操作:

override func viewDidLoad() {
     super.viewDidLoad()
     myTableView.delegate = self
     myTableView.dataSource = self
}

如果这对您不起作用,请告诉我,我会考虑更多。

不要猜测方法的正确签名。有两种方法可以正确处理。

  1. 最好的选择是让Xcode给你正确的签名。开始输入名称(例如 "numberOfRows"),Xcode 将显示可能的匹配方法。 Select 正确的。
  2. 另一种选择是从参考文档中复制正确的签名。

这是正确的方法签名:

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int

您缺少下划线。

为什么要尝试两次 numberOfSections 方法?只需使用正确的一个:

func numberOfSections(in tableView: UITableView) -> Int

您很可能从某些 Swift 2 代码中复制并粘贴了示例。 API 在 Swift 3.

中发生了很大变化

与您的问题无关(如评论中所述),请勿从任何 table 视图数据源或委托方法中调用 listCitta()。您应该调用一次(例如在 viewDidLoad 中)并使用 属性 来保存结果数组。然后你的数据源和委托方法应该简单地访问 属性.

确保在各自的视图控制器中实现了 UITableViewDelegateUITableViewDataSource

class MainViewController: UIViewController, UITableViewDelegate, UITableViewDataSource