AsyncDisplayKit 系列教程 —— ASTableV

作者: PonyCui | 来源:发表于2015-11-24 11:57 被阅读5683次

    ASTableView 简介

    ASTableView 是 UITableView 的子类,ASTableView 着力解决 UITableView 在 ReloadData 耗时长以及滑动卡顿的性能问题。

    ASTableView 实质上是一个 ScrollView ,其中添加有指定数的 ASDisplayNode,在屏幕滚动时,离屏的ASDisplayNode内容会被暂时释放,在屏或接近在屏的ASDisplayNode会被提前加载。因此,ASTableView 不存在 Cell 复用的问题,也不存在任何 Cell 复用。

    ASTableView 的高度计算以及布局都在 ASCellNode 中实现,与 ASTableView 是完全解耦的。

    ASTableView 中所有的元素都不支持 AutoLayout、AutoResizing,也不支持StoryBoard、IB。

    ASTableView 完全可以将滑动性能提升至60FPS。

    添加一个 ASTableView

    将 ASTableView 添加到View中就像添加UITableView一样简单,并且只需实现三个代理方法即可。

    
    import UIKit
    
    class ViewController: UIViewController, ASTableViewDataSource, ASTableViewDelegate {
    
        let tableView = ASTableView()
        
        deinit {
            tableView.asyncDelegate = nil // 记得在这里将 delegate 设为 nil,否则有可能崩溃
            tableView.asyncDataSource = nil // dataSource 也是一样
        }
        
        override func viewDidLoad() {
            super.viewDidLoad()
            tableView.asyncDataSource = self
            tableView.asyncDelegate = self
            self.view.addSubview(tableView)
        }
        
        override func viewWillLayoutSubviews() {
            super.viewWillLayoutSubviews()
            tableView.frame = view.bounds
        }
        
        // MARK: - ASTableView
        
        func numberOfSectionsInTableView(tableView: UITableView!) -> Int {
            return 1
        }
        
        func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int {
            return 10
        }
        
        func tableView(tableView: ASTableView!, nodeForRowAtIndexPath indexPath: NSIndexPath!) -> ASCellNode! {
            return ASCellNode()
        }
    
    }
    

    返回自定义的 ASCellNode

    我们只是返回了一下空的 ASCellNode 给代理方法,现在我们创建一个新的类,添加一个ImageView、两个Label,我们至少需要以下这些步骤:

    1. 创建对应的控件
    2. 添加到ASCellNode中
    3. 为控件添加数据
    4. func calculateSizeThatFits(constrainedSize: CGSize) -> CGSize 方法中计算控件宽度和高度,并返回 Cell 的高度
    5. func layout() 方法中为对应控件进行布局
    class CustomCellNode: ASCellNode {
        
        let iconImageView = ASNetworkImageNode(cache: ImageManager.sharedManager,
            downloader: ImageManager.sharedManager)
        let titleLabel = ASTextNode()
        let subTitleLabel = ASTextNode()
        
        override init!() {
            super.init()
            addSubnode(iconImageView)
            addSubnode(titleLabel)
            addSubnode(subTitleLabel)
        }
        
        func configureData(iconURL: NSURL, title: String, subTitle: String) {
            iconImageView.URL = iconURL
            titleLabel.attributedString = NSAttributedString(string: title, attributes: [
                NSForegroundColorAttributeName: UIColor.blackColor(),
                NSFontAttributeName: UIFont.systemFontOfSize(17)
                ])
            subTitleLabel.attributedString = NSAttributedString(string: subTitle, attributes: [
                NSForegroundColorAttributeName: UIColor.grayColor(),
                NSFontAttributeName: UIFont.systemFontOfSize(15)
                ])
        }
        
        override func calculateSizeThatFits(constrainedSize: CGSize) -> CGSize {
            // 这是一堆约束,只是给开发者看的。
            // |-15-[iconImageView(60)]-15-[titleLabel]-15-|
            // |-15-[iconImageView(60)]-15-[subTitleLabel]-15-|
            // V:|-8-[titleLable]-3-[subTitleLabel]-8-|
            // V:|-2-[iconImageView(60)]-2-|
            let textMaxWidth = constrainedSize.width - 15 - 60 - 15 - 15
            titleLabel.measure(CGSize(width: textMaxWidth, height: CGFloat.max))
            subTitleLabel.measure(CGSize(width: textMaxWidth, height: CGFloat.max))
            if 8 + titleLabel.calculatedSize.height + subTitleLabel.calculatedSize.height + 8 < 64.0 {
                return CGSize(width: constrainedSize.width, height: 64.0)
            }
            else {
                return CGSize(width: constrainedSize.width,
                    height: 8 + titleLabel.calculatedSize.height + subTitleLabel.calculatedSize.height + 8)
            }
        }
        
        override func layout() {
            // 开始布局吧,如果你看到这里已经心碎了?
            iconImageView.frame = CGRect(x: 15, y: 2, width: 60, height: 60)
            titleLabel.frame = CGRect(x: 15 + 60 + 15, y: 8, width: titleLabel.calculatedSize.width, height: titleLabel.calculatedSize.height)
            subTitleLabel.frame = CGRect(x: 15 + 60 + 15, y: titleLabel.frame.origin.y + titleLabel.frame.size.height, width: subTitleLabel.calculatedSize.width, height: subTitleLabel.calculatedSize.height)
        }
        
    }
    

    然后在ASTableView返回我们的Cell

    let mockData = [
        [NSURL(string: "http://tp1.sinaimg.cn/3985473000/180/5742244430/0")!, "杨大大117", "不论我们最后生疏到什么样子 要记住 曾经对你的好都是真的 ❤"],
        [NSURL(string: "http://tp3.sinaimg.cn/2466802634/180/5740492182/0")!, "孟矾矾", "温和而坚定。"],
        [NSURL(string: "http://tp2.sinaimg.cn/1736940353/180/5634177627/0")!, "郭德欣", "广州交通电台FM106.1主持人"],
        [NSURL(string: "http://tp4.sinaimg.cn/2379086631/180/40052837834/0")!, "我是你景儿", "店铺已更名为:JiLovèng 。大家可以在淘宝宝贝直接搜索这个,不分大小写。[心]jiloveng"]
    ]
    func tableView(tableView: ASTableView!, nodeForRowAtIndexPath indexPath: NSIndexPath!) -> ASCellNode! {
        let cellNode = CustomCellNode()
        if indexPath.row < mockData.count {
            let item = mockData[indexPath.row]
            if let URL = item[0] as? NSURL,
                let title = item[1] as? String,
                let subTitle = item[2] as? String {
                cellNode.configureData(URL, title: title, subTitle: subTitle)
            }
        }
        return cellNode
    }
    

    Run

    Run Demo,就可以看到一个流畅的 UITableView 已经实现了,把数据量加大1000倍看看效果怎么样? 温馨提示,真机测试才能看出效果。

    代码的下载链接 https://github.com/PonyCui/AsyncDisplayKit-Issue-3

    结语

    这就是 ASTableView 的简单实现,接下来,我会为大家带来 ASTableView 的扩展应用。
    AsyncDisplayKit 系列教程 —— 添加一个 UIActivityIndicatorView 到 ASCellNode

    相关文章

      网友评论

      • MMD_:ASDisplayNode 遇到一个问题 刷新tableview的时候 会抱一个错误 经诊断是cell里面的控件添加了点击事件造成的 —(addTarget:self action:@selector(backImageNodeAction) forControlEvents) 这是为何呢
      • 十二生肖都背不全的家伙:viewForHeaderInSection 这个方法怎么用?为什么我实现了这个代理方法但是没有效果。。。
        xi_lin:你实现了height方法没?
      • bin9999:ASTableView reloadData 会跑到顶部去,怎么解决? :sob:
        8b51f838ac05:或者刷新后滚动到指定的行
        从此你不再颠沛流离:@bin9999 使用insert插入
      • DSKcpp:请问如何让ASButtonNode的图片和文字居中并且有内间距? 就和默认的UIButton一样 。
        PonyCui:@DSKcpp 要使它们居中,你需要手动布局,AS暂不支持自动居中。
        DSKcpp:@PonyCui 谢谢
        如何让button里的图片和文字居中显示呢 ,我现在创建的button 图片和文字都再左上角
        PonyCui:@DSKcpp laysOutHorizontally = true contentSpacing = Float()

      本文标题:AsyncDisplayKit 系列教程 —— ASTableV

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