.h头文件中定义属性
// 报警闪烁
@property (strong, nonatomic, readonly) NSTimer *alarmTimer;
在.m 文件中 再次声明属性
@property (strong, nonatomic, readwrite) NSTimer *alarmTimer;
.h头文件中定义属性
// 报警闪烁
@property (strong, nonatomic, readonly) NSTimer *alarmTimer;
在.m 文件中 再次声明属性
@property (strong, nonatomic, readwrite) NSTimer *alarmTimer;