swift3.0 实现对象拷贝

前端之家收集整理的这篇文章主要介绍了swift3.0 实现对象拷贝前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

贡献者:赵大财
博客:https://my.oschina.net/zhaodacaiGitHub:https://github.com/dacaizhao
邮箱: dacai_zhao@163.com QQ:327532817
=============================

//实现代理 NSCopying

func copy(with zone: NSZone? = nil) -> Any {
        return type(of: self).init()
    }

//let myCollectionViewCell: YouCollectionViewCell = item[1].copy() as! YouCollectionViewCell
原文链接:https://www.f2er.com/swift/322589.html

猜你在找的Swift相关文章