UITableView无法识别NumberOfRowsInSection

时间:2017-10-14 15:17:11

标签: ios swift sqlite uitableview sections

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

  

- [UIView tableView:numberOfRowsInSection:]:无法识别的选择器发送到实例0x101c3ce50   2017-10-14 17:14:44.893258 + 0200 MinistryHelp [403:44322] *由于未捕获的异常终止应用程序' NSInvalidArgumentException',原因:' - [UIView tableView:numberOfRowsInSection: ]:无法识别的选择器发送到实例0x101c3ce50'   * 第一次抛出调用堆栈:   (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:以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
}

使用第一个函数我根据我的方法返回的列表的索引获取节名称。 第二个函数根据部分返回数据的数量,因此我根据该部分名称过滤数据,然后使用列表返回数字。 第三种和第四种方法返回部分的数量。

我也尝试插入假数据,编写一个数字用于测试目的,没有什么不同。

3 个答案:

答案 0 :(得分:2)

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

  1. 最好的选择是让Xcode为您提供正确的签名。开始输入名称(例如“numberOfRows”),Xcode将显示可能的匹配方法。选择正确的。
  2. 另一种选择是从参考文档中复制正确的签名。
  3. 这是正确的方法签名:

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

    你缺少下划线。

    为什么你在numberOfSections方法中有两次尝试?只需使用正确的:

    func numberOfSections(in tableView: UITableView) -> Int
    

    最有可能是从一些Swift 2代码中复制并粘贴了一些示例。 API在Swift 3中发生了很大的变化。

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

答案 1 :(得分:0)

您是否设置了所有代理和数据源?如果不是,请在viewDidLoad()方法中尝试:

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

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

答案 2 :(得分:0)

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

class MainViewController: UIViewController, UITableViewDelegate, UITableViewDataSource