@property (readonly) NSMutableDictionary* activeTransfers;
@synthesize activeTransfers;
当我声明Property时,我得到了一个错误。(arc禁止使用未指定的存储属性合成objective-c对象的属性。),我必须做些什么才能解决问题。
答案 0 :(得分:0)
将您的财产声明更改为:
@property(nonatomic,strong)NSMutableDictionary * activeTransfers; &安培;然后检查。
答案 1 :(得分:0)
只需使用:
@property(strong) NSMutableDictionary *activeTransfers;
无需在.m
中进行合成