1. <legend id='7BIwi'><style id='7BIwi'><dir id='7BIwi'><q id='7BIwi'></q></dir></style></legend>
    2. <small id='7BIwi'></small><noframes id='7BIwi'>

        <i id='7BIwi'><tr id='7BIwi'><dt id='7BIwi'><q id='7BIwi'><span id='7BIwi'><b id='7BIwi'><form id='7BIwi'><ins id='7BIwi'></ins><ul id='7BIwi'></ul><sub id='7BIwi'></sub></form><legend id='7BIwi'></legend><bdo id='7BIwi'><pre id='7BIwi'><center id='7BIwi'></center></pre></bdo></b><th id='7BIwi'></th></span></q></dt></tr></i><div id='7BIwi'><tfoot id='7BIwi'></tfoot><dl id='7BIwi'><fieldset id='7BIwi'></fieldset></dl></div>
          <bdo id='7BIwi'></bdo><ul id='7BIwi'></ul>

        <tfoot id='7BIwi'></tfoot>

        自动引用计数:指向非 const 类型“NSError *"的指

        时间:2023-05-31

            <tbody id='4KXSQ'></tbody>
            • <bdo id='4KXSQ'></bdo><ul id='4KXSQ'></ul>

              1. <tfoot id='4KXSQ'></tfoot>

              2. <i id='4KXSQ'><tr id='4KXSQ'><dt id='4KXSQ'><q id='4KXSQ'><span id='4KXSQ'><b id='4KXSQ'><form id='4KXSQ'><ins id='4KXSQ'></ins><ul id='4KXSQ'></ul><sub id='4KXSQ'></sub></form><legend id='4KXSQ'></legend><bdo id='4KXSQ'><pre id='4KXSQ'><center id='4KXSQ'></center></pre></bdo></b><th id='4KXSQ'></th></span></q></dt></tr></i><div id='4KXSQ'><tfoot id='4KXSQ'></tfoot><dl id='4KXSQ'><fieldset id='4KXSQ'></fieldset></dl></div>

                  <small id='4KXSQ'></small><noframes id='4KXSQ'>

                  <legend id='4KXSQ'><style id='4KXSQ'><dir id='4KXSQ'><q id='4KXSQ'></q></dir></style></legend>

                  本文介绍了自动引用计数:指向非 const 类型“NSError *"的指针,没有明确的所有权的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  在更新我的一些代码以与 iOS 5 SDK 兼容时,我尝试通过在 Xcode 中使用转换为 Objective-C ARC"来重构我的代码并收到错误.错误发生在我的 .h 文件中的实例变量上.

                  In updating some of my code to be in compatible with the iOS 5 SDK, I attempted to refactor my code by using "Convert to Objective-C ARC" in Xcode and received an error. The error occurs on an instance variable in my .h file.

                  NSError **_error;
                  

                  错误提示指向非 const 类型 'NSError *' 的指针没有明确的所有权."我该如何解决这个问题?

                  The error says "Pointer to non-const type 'NSError *' with no explicit ownership." How might I fix this?

                  推荐答案

                  当将 NSError 对象存储在实例变量中时,您必须将其声明为简单指针:

                  When storing NSError objects in an instance variable you have to declare it as a simple pointer:

                  @interface Foo : NSObject
                  {
                      NSError *_errror;
                  }
                  

                  NSError ** 仅用于将 NSError 对象从方法间接返回给调用者.将其存储在实例变量中(可能)是错误的.

                  NSError ** is only used to indirectly return NSError objects from a method to the caller. It is (probably) an error to store it in an instance variable.

                  这篇关于自动引用计数:指向非 const 类型“NSError *"的指针,没有明确的所有权的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何从常规 UIFont 创建粗体 UIFont? 下一篇:Xcode 4.2 在 IB 的选项卡栏上放置导航控制器时的警

                  相关文章

                  最新文章

                  <small id='qkjy2'></small><noframes id='qkjy2'>

                      <legend id='qkjy2'><style id='qkjy2'><dir id='qkjy2'><q id='qkjy2'></q></dir></style></legend>
                      • <bdo id='qkjy2'></bdo><ul id='qkjy2'></ul>
                      <i id='qkjy2'><tr id='qkjy2'><dt id='qkjy2'><q id='qkjy2'><span id='qkjy2'><b id='qkjy2'><form id='qkjy2'><ins id='qkjy2'></ins><ul id='qkjy2'></ul><sub id='qkjy2'></sub></form><legend id='qkjy2'></legend><bdo id='qkjy2'><pre id='qkjy2'><center id='qkjy2'></center></pre></bdo></b><th id='qkjy2'></th></span></q></dt></tr></i><div id='qkjy2'><tfoot id='qkjy2'></tfoot><dl id='qkjy2'><fieldset id='qkjy2'></fieldset></dl></div>

                      <tfoot id='qkjy2'></tfoot>