Xiaoye220 / EmptyDataSet-Swift

🎄 DZNEmptyDataSet implement with Swift.A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display. DZNEmptyDataSet with Swift.
MIT License
692 stars 99 forks source link

emptyDataSetSource和emptyDataSetDelegate 在声明时对循环引用一点的疑问? #49

Open bestannwn opened 2 years ago

bestannwn commented 2 years ago

在项目源码中在声明emptyDataSetSource和emptyDataSetDelegate的时候为啥不需要加 weak? 项目中是: public var emptyDataSetSource: EmptyDataSetSource? public var emptyDataSetDelegate: EmptyDataSetDelegate?

为什么不设置为 public weak var emptyDataSetSource: EmptyDataSetSource? public weak var emptyDataSetDelegate: EmptyDataSetDelegate?

还望大佬讲解一下?谢谢~