为什么使用SnapKit会出现内存泄漏?

时间:2017-04-27 14:38:31

标签: ios snapkit

我正在使用SnapKit 3.2.0。当我在我的项目中使用snapkit时,它在Xcode的Memory Graph中显示了一个内存问题。

我在here创建了一个非常简单的项目。

let cell = UITableViewCell()
let label = UILabel()
label.text = "Hello World"
cell.contentView.addSubview(label)
label.snp.makeConstraints { maker in
    maker.centerX.centerY.equalToSuperview()
}

以上是我设置的所有代码。记忆警告让我有点疯狂。那么如何摆脱它?

0 个答案:

没有答案