2 回答
暮色呼如
TA贡献1853条经验 获得超9个赞
你必须实现这几个协议的required方法
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 10
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell")
return cell!
}
- 2 回答
- 0 关注
- 1029 浏览
添加回答
举报
0/150
提交
取消