Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我通过仪器检查内存泄漏时,它显示 NSMutableString 上的泄漏。这是泄漏的代码,
66.7% 是什么意思..?如何解决这个泄漏。?
调用树中显示的第二种方法是
首先显示 createEnvelope 方法。
这不是内存泄漏,但你是对的,内存中的许多字符串操作,可能导致内存碎片,至少是不良的内存行为,请参阅autorelease。
autorelease
用于stringWithCapacity以足够的空间进行初始化,因此不会发生重新分配。
stringWithCapacity
风格问题:也许在这里使用 NSString。