菜鸟教程小白 发表于 2022-12-13 11:43:44

objective-c - 潜在泄漏,将 NSString-Property 分配给 UILabel


                                            <p><p>当我分析我的代码时,当我将核心数据字符串属性分配给 UILabel 时,它显示出潜在的泄漏</p>

<p>cell.textLabel.text = prop.new_value;</p>

<p>使用 Instrument and Leaks 运行应用程序不会显示任何问题。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>静态分析器理解某些 cocoa 约定,例如以“new”开头的方法返回一个保留的对象指针。</p>

<p>我建议将 <code>prop.new_value</code> 中的“<code>new_value</code>”更改为不同的内容。</p>

<p>来源:<a href="http://clang.llvm.org/docs/AutomaticReferenceCounting.html#objects.operands.retained_returns" rel="noreferrer noopener nofollow">http://clang.llvm.org/docs/AutomaticReferenceCounting.html#objects.operands.retained_returns</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 潜在泄漏,将 NSString-Property 分配给 UILabel,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9365802/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9365802/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 潜在泄漏,将 NSString-Property 分配给 UILabel