我正在创建一个UITextView:
greetingTextView = [[UITextView alloc] initWithFrame:greetingRect];
使用它很好,但是当ViewController附加到deallocs时,我只能在iOS 7中获得内存泄漏?我甚至剔除greetingTextView的绝望,但没有效果:
[greetingTextView.undoManager removeAllActions]; greetingTextView.delegate = Nil; [greetingTextView removeFromSuperview]; greetingTextView = Nil;
泄漏在这个图像:
所以看起来与UITextView UndoManager有关系?但为什么只有在iOS 7?
问候
解决方法
我遇到类似的情况,狩猎之后,有些跟踪和错误,我注意到,当ARC被禁用该特定文件时,奇怪的行为停止,没有发生内存泄漏.
check here for how to disable arc for a particular file