美文网首页
关于iOS开发property with 'retain(or

关于iOS开发property with 'retain(or

作者: Mr__BruceChen | 来源:发表于2017-12-15 11:46 被阅读0次

Xcode的#import比#include的好处是解决多重包含的问题,遇到了相互包含头文件的问题

property with 'retain(or strong)' attribute must be of object type”

解决方案就是在出错头文件中实现

@class 文件名;即可解决例如

#import#import#import "RACBaseViewModelService.h"

#import "RACNavigationImpl.h"

@class RACNavigationImpl;

@interface RACBaseViewModel : NSObject

/// nav

@property(nonatomic,strong) RACNavigationImpl *naviImpl;

文章参考链接

https://stackoverflow.com/questions/8828398/how-to-solve-this-error-property-with-retainor-strong-attribute-must-be-of

相关文章

网友评论

      本文标题:关于iOS开发property with 'retain(or

      本文链接:https://www.haomeiwen.com/subject/rrgrwxtx.html