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的错误

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

  • 相关阅读:
    为了抓包某APP所做的尝试(to be continued)
    VirtualBox的使用的一些Tips 网络配置|硬盘扩充
    斜线和反斜线简要历史,为什么windows和unix采用不同的路径分隔符
    求出二维数组主对角线、次对角线以及周边元素之和
    C#计算两个时间的时间差,精确到年月日时分秒
    C#获取MP3,WMA信息
    C#窗体随意移动
    DEV GridControl小结
    DEV 皮肤的使用
    C#窗体阴影
  • 原文地址:https://www.cnblogs.com/wupei/p/3870262.html
Copyright © 2011-2022 走看看