关于iOS开发property with 'retain(or strong)' attribute must be of object type

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

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容