首页 > 移动平台 > 详细

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

时间:2019-05-24 10:04:36      阅读:887      评论:0      收藏:0      [点我收藏+]

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

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

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

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

#import "BaseViewModelService.h"

#import "NavigationImpl.h"

@class NavigationImpl;

@interface BaseViewModel : NSObject

@property(nonatomic,strong) NavigationImpl *naviImpl;

 

 

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

原文:https://www.cnblogs.com/OIMM/p/10916290.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!