我的一些方法没有被击中,我得出了与约束有关的可能结论
这些是一些没有被击中的方法
func numberOfSectionsInTableView(tableView: UITableView)->Int {
print("not hit1")
return 1
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
print("not hit either")
return self.funlists.count;
//return 1
}
当我去故事板并点击uitableview时,它表示没有约束。当我进入编辑器时,添加缺少的约束是一个无法忽略的选项。
答案 0 :(得分:0)
约束决定了你的tableview的位置,而不是函数的执行与否。
尝试
yourtableview.dataSource = self
youttableview.delegate = self
如果你想让XCode自动添加缺失的约束,首先你必须在storybaord中选择tableview