码迷,mamicode.com
首页 > 其他好文 > 详细

Passing address of non-local object to _autoreleasing parameter for write-back

时间:2015-01-20 17:04:59      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

http://233.io/article/1031248.html

Passing address of non-local object to __autoreleasing parameter for write-back 

在希望通过函数的参数返回Objective-C对象的时候,遇到了这个问题

错误代码如下:

 

- (void)methodA:(NSString **)string<span style="white-space:pre">	</span>// 其实,这里的参数实际类型是:(NSString * __autoreleasing * )string
{
    *string = XXX;
}

正确的用法是 

 

 

- (void)methodA:(NSString * __strong *)string
{
    *string = XXX;
}

 

调用的时候:

 

NSString *strongString;
[object methodA:&strongString];

 

 

Ref:

1.

http://blog.csdn.net/chuanyituoku/article/details/17371807

我的这篇文章的最后部分:

 

Returning a Result as the Argument

有详细介绍 (看过一遍、并且理解 其实是远远不够的,要吃过苦头才能记牢。。。) 

 

 

2.

http://codego.net/402513/

Passing address of non-local object to _autoreleasing parameter for write-back

标签:

原文地址:http://www.cnblogs.com/xuejinhui/p/4236299.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!