swift中tableview的使用和注意事项

2 篇文章 0 订阅

今天使用swift写了个简单的tableView,语法和用法上跟oc没多大的区别。但是还是有一些细节的地方需要注意一下的。

先上代码

import UIKit

class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {
    
    var _tableView:UITableView?
    override func viewDidLoad() {
        super.viewDidLoad()
       
        _tableView=UITableView(frame: self.view.bounds, style:.Plain)
        self.view.addSubview(_tableView)
        _tableView!.delegate=self
        _tableView!.dataSource=self
    
    }

   
    func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int
    {
        return 20;
    }
    func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
        var cell=tableView.dequeueReusableCellWithIdentifier("CellId") as? UITableViewCell
        if (cell==nil){
            cell=UITableViewCell(style: .Default, reuseIdentifier: "CellId")
        }
        cell!.textLabel.text="\(indexPath.row)"
        return cell
    }

}

 注意以下几点:

1,数据源方法,

func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell!
func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int
这两个方法是必须实现的,如果你不实现这两个方法,编译器就会报错。而不再是跟OC的时候一样,运行的时候才会报错
所以,当你写完_tableView!.dataSource=self的时候,会出现报错,然后你在头部加班UITableViewDataSource,依然报错。当你实现了上面两个方法后,错误就会消失

2,cell的重用

 var cell=tableView.dequeueReusableCellWithIdentifier("CellId") as? UITableViewCell
 这里需要注意的一点是,后面强转成UITableViewCell的时候,在as后面带上个问号,因为在缓存池里不一定能找到可以重用的cell,不带问号就会引起cell为nil的错误

初学经验,如有不妥,望大神指点

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值