iOS Developer

[Swift]运用泛型实现不重用的UITableView

2016-06-21  本文已影响1458人  MangoMade

Mango's Blog

tableView再常见不过了,现在的项目中基本上都会用到很多tableView。并且很多时候tableView上每一行的内容都不同。

如果你有这样的需求:

一个展现用户信息的页面,有的cell最右侧是图片,有的cell最右侧显示的是文本(名字、手机号、性别、余额)

Or:

一个填写用户信息的列表,有各种各样的textField

上述的两种页面有两个共同的特点:

然而这个时候tableView的cell重用机制就非常棘手:

storyBoard中可以设置static cell,来关闭重用。可是如果tableView是用代码建立的,就没有某个系统库的方法能够设置static cell

于是在swift下我写了一个简单的extension可以实现关闭重用的效果。实现原理也非常简单,show code:

extension UITableView {

    /*
     弹出一个静态的cell,无须注册重用,例如:
     let cell: GrayLineTableViewCell = tableView.mm_dequeueStaticCell(indexPath)
     即可返回一个类型为GrayLineTableViewCell的对象
     
     - parameter indexPath: cell对应的indexPath
     - returns: 该indexPath对应的cell
     */
    func mm_dequeueStaticCell<T: UITableViewCell>(indexPath: NSIndexPath) -> T {
        let reuseIdentifier = "staticCellReuseIdentifier - \(indexPath.description)"
        if let cell = self.dequeueReusableCellWithIdentifier(reuseIdentifier) as? T {
            return cell
        }else {
            let cell = T(style: .Default, reuseIdentifier: reuseIdentifier)
            return cell
        }
    }
}

无须注册。

cell直接声明为其需要的类型,改方法会自动返回这个类型的cell

最后:

泛型函数的调用必须是以下写法:

let cell: GrayLineTableViewCell = tableView.mm_dequeueStaticCell(indexPath)

如果写成:

let cell = tableView.mm_dequeueStaticCell<GrayLineTableViewCell>(indexPath)

将会报错,这种写法只适用于 泛型类型,不适用于 泛型函数

上一篇 下一篇

猜你喜欢

热点阅读