美文网首页
swift tableView自适应高度

swift tableView自适应高度

作者: 风飞燕 | 来源:发表于2016-07-15 15:51 被阅读398次

    今天在用swift的时候用到了cell的自适应高度,本来打算运用oc的方法,然而却发现木有用,于是在网上各种翻找,嘿嘿,找到了,原来这么简单,比oc好用多了,介于个人比较懒,就弄了一个简单的,废话不多说,直接上代码
    、、、

    import UIKit

    class ViewController: UIViewController ,UITableViewDelegate,UITableViewDataSource{

    var tableView1 : UITableView?
    
    let dtaArray = ["lettableView1=UITableView(frame:self.view.boundsview.addSubview(tableView1)tableView1.delegatetableView1.dataSourcselftableView1.registerClass(OneTableViewCell.selfforCellReuseIdentifier:OneTableViewCell","23","fadshjfhasdnkjncjxnvfbfjdhkabfdkc nx cmvmxv ajfbskjbdjsd cnmxc ","111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","fsdfsgfgfd","dssssssfacdavfaddcvvdfafadfsadcxfaa"]
    
    
    
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        self.title = "热门电影"
      let  tableView1 = UITableView(frame: self.view.bounds)
        view.addSubview(tableView1)
        tableView1.delegate = self
        tableView1.dataSource=self
       tableView1.registerNib(UINib(nibName: "TableViewCell",bundle: nil), forCellReuseIdentifier: "TableViewCell")
        tableView1.estimatedRowHeight = 44.0
        tableView1.rowHeight = UITableViewAutomaticDimension
        tableView1.tableFooterView = UIView()
    }
    
    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return self.dtaArray.count
    }
    
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell : TableViewCell = tableView.dequeueReusableCellWithIdentifier("TableViewCell") as! TableViewCell
        
    
        cell.lBEL.text =  self.dtaArray[indexPath.row]
        
           return cell
        
    }
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
    

    }

    、、、

    弄的很简单,哈哈
    我的cell是用xib制作的

    3DDD96B3-74B9-4DDD-BCCD-DE87ACF714F8.png

    下面是约束

    EBD99F26-C69B-498C-B942-C45AB3619F7E.png

    约束其实很简单,就这样啦,想知道更细致的就参考这位大大的http://blog.csdn.net/lengxue789/article/details/47135839

    相关文章

      网友评论

          本文标题:swift tableView自适应高度

          本文链接:https://www.haomeiwen.com/subject/lgpyjttx.html