自动引用计数:指向非 const 类型“NSError *"的指针,没有明确的所有权

Automatic Reference Counting: Pointer to non-const type #39;NSError *#39; with no explicit ownership(自动引用计数:指向非 const 类型“NSError *的指针,没有明确的所有权)
本文介绍了自动引用计数:指向非 const 类型“NSError *"的指针,没有明确的所有权的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在更新我的一些代码以与 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 *"的指针,没有明确的所有权的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

AWS DynamoDB Batch Get Request - iOS(AWS DynamoDB 批量获取请求 - iOS)
Querying DynamoDB on non-key attributes(在非关键属性上查询 DynamoDB)
DynamoDB auto incremented ID amp; server time (iOS SDK)(DynamoDB 自动递增 ID amp;服务器时间(iOS SDK))
Where to find a clear explanation about swift alert (UIAlertController)?(哪里可以找到关于 swift alert (UIAlertController) 的清晰解释?)
Facebook Requests Dialog: Frictionless Requests in native iOS app possible?(Facebook 请求对话框:本机 iOS 应用程序中的无摩擦请求可能吗?)
dynamodb scanexpression with scan filter in objective-c(在objective-c中带有扫描过滤器的dynamodb scanexpression)