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

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

时间:2014-07-28 16:02:53      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   for   art   问题   

在希望通过函数的参数返回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,布布扣,bubuko.com

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

标签:style   blog   http   color   strong   for   art   问题   

原文地址:http://blog.csdn.net/chuanyituoku/article/details/38227073

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