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

struct 如何存储指针类型的值

时间:2016-05-23 21:12:23      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:

通过 __unsafe_unretained标示符标示指针类型的值,否则xcode会报以下错误(前提,你使用的是ARC模式):

ARC forbids Objective-C objects in struct

 

例如:

1 typedef struct {
2     
3     __unsafe_unretained NSString *name;
4 } myStruct;

 

struct 如何存储指针类型的值

标签:

原文地址:http://www.cnblogs.com/zbblog/p/5521117.html

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