猿问

swift UITableView的使用方法?

富国沪深
浏览 1030回答 2
2回答

蝴蝶不菲

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

暮色呼如

你必须实现这几个协议的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!}
随时随地看视频慕课网APP
我要回答