当我分析我的代码时,当我将核心数据字符串属性分配给UILabel时,它会显示潜在的泄漏
cell.textLabel.text = prop.new_value;
使用Instrument and Leaks运行应用程序并没有显示任何问题。
答案 0 :(得分:3)
静态分析器理解某些cocoa约定,例如以“new”开头的方法返回一个保留的对象指针。
我建议将new_value
中的“prop.new_value
”更改为不同的内容。
来源:http://clang.llvm.org/docs/AutomaticReferenceCounting.html#objects.operands.retained_returns