菜鸟教程小白 发表于 2022-12-13 04:44:29

ios - ARC下双倍免费


                                            <p><p>我在我的应用程序中使用 ARC 并因此出现新的崩溃:</p>

<pre><code>malloc: *** error for object 0x17e9a5d0: double free
*** set a breakpoint in malloc_error_break to debug
</code></pre>

<p>为了弄清楚,我启用了 Zombie Objects ,原因是:</p>

<pre><code>*** -: message sent to deallocated instance 0x15d183e0
</code></pre>

<p>我的代码:</p>

<pre><code>Class myClass = NSClassFromString(classString);
SEL mySelector =NSSelectorFromString(selectorString);
NSString *arg = @&#34;arg&#34;;

NSMethodSignature *sig = ;
NSInvocation * myInvocation = ;

;
;
;

NSString *result = nil;
;
;
;

NSLog(@&#34; Result String : %@ &#34;,result);
</code></pre>

<p>出了什么问题?哪个 CFString ??
感谢您的任何回复。</p>

<p><strong>编辑:</strong></p>

<p>对象 <code>NSString *result</code> 导致 .下一步如何纠正这个错误? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>result</code> 在被调用传回时没有被保留。
试试</p>

<pre><code>CFStringRef result;
;
;
;
if (result)
    CFRetain(result);

NSLog(@&#34; Result String : %@ &#34;, (__bridge NSString *)result);
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - ARC下双倍免费,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19394935/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19394935/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - ARC下双倍免费