// // SwitchDeviceView.h // neutralWatch // // Created by WeiChaoZheng on 2017/12/30. // Copyright © 2017年 xTT. All rights reserved. // #import @interface SwitchDeviceView : UIView /** 选中对象的回调 */ @property (nonatomic,copy) void (^selectBlock)(id object); /** 对象们 */ @property (nonatomic,strong) NSArray *objects; -(instancetype)initWithFrame:(CGRect)frame ShowObjects:(NSArray *)objects; @end