zoukankan      html  css  js  c++  java
  • swift中tableview的使用和注意事项

    今天使用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的错误

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

  • 相关阅读:
    Jquery、Ajax实现新闻列表页分页功能
    html中文字溢出处理(text-overflow)
    canvas图像绘制过程中的注意
    问题账户需求分析
    2016年秋季个人阅读计划
    阅读笔记之我们应当怎样做需求分析
    软件工程课个人总结
    人月神话阅读笔记—第四章
    人月神话阅读笔记—第三章
    人月神话阅读笔记—序言及第一、二章
  • 原文地址:https://www.cnblogs.com/wupei/p/3870262.html
Copyright © 2011-2022 走看看