ios7 – iOS 7中的一些非常奇怪的UITextView …不在iOS 6中?

前端之家收集整理的这篇文章主要介绍了ios7 – iOS 7中的一些非常奇怪的UITextView …不在iOS 6中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在创建一个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
原文链接:/iOS/330532.html

猜你在找的iOS相关文章