我在project
中测试了我的Instruments
,最后我在memory leak
的类别中找到了UIView
:UIView+RSAdditions
以下代码:
- (void)setHeight:(CGFloat)height {
CGRect frame = self.frame;
frame.size.height = height;
self.frame = frame; // this code cause memory leak
}
我还搜索了我的project
,并在此处找到了相同的方法名称:
那些相同的方法会影响内存泄漏吗?我对memory leak
的原因感到困惑。