I'am using SnapKit 3.2.0. When I use snapkit in my project, it shows a memory issue in the Memory Graph of Xcode.
I created a very simple project at here.
let cell = UITableViewCell()
let label = UILabel()
label.text = "Hello World"
cell.contentView.addSubview(label)
label.snp.makeConstraints { maker in
maker.centerX.centerY.equalToSuperview()
}
Above is all the code I set. The memory warning makes me a a little crazy. So how to get rid of it ?