为了账号安全,请及时绑定邮箱和手机立即绑定

swift UITableView的使用方法?

swift UITableView的使用方法?

富国沪深 2018-08-15 10:14:19
查看完整描述

2 回答

?
蝴蝶不菲

TA贡献1810条经验 获得超4个赞

解决办法:因为UITableView的一些协议没有实现

查看完整回答
反对 回复 2018-08-19
?
暮色呼如

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!

}


查看完整回答
反对 回复 2018-08-19
  • 2 回答
  • 0 关注
  • 1029 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信