码迷,mamicode.com
首页 > 移动开发 > 详细

ios 协议(delegate)使用过程中遇到assign attribute must be unsafeunretained

时间:2015-03-30 16:34:21      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

今天在使用协议的过程中,偶然发现这样使用

@interface AppDelegate (){
    id<ChatDelegate>  testdelegate;
}
@property (nonatomic , assign) id<ChatDelegate> testdelegate;

@end

@implementation AppDelegate
@synthesize testdelegate;

会报错:

Existing instance variable ‘delegate‘ for property ‘delegate‘ with assign attribute must be unsafe unretained

修改成:


@interface AppDelegate (){
   __unsafe_unretained id<ChatDelegate>  testdelegate;
}
@property (nonatomic , assign) id<ChatDelegate> testdelegate;

@end

@implementation AppDelegate
@synthesize testdelegate;

就好了,这只是为了相容iOS4以下的版本

参考:http://www.cnblogs.com/lyanet/archive/2013/05/07/3064290.html


ios 协议(delegate)使用过程中遇到assign attribute must be unsafeunretained

标签:

原文地址:http://blog.csdn.net/lv_ruanruan/article/details/44751147

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