You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
498 B
27 lines
498 B
1 year ago
|
//
|
||
|
// SwitchDeviceView.h
|
||
|
// neutralWatch
|
||
|
//
|
||
|
// Created by WeiChaoZheng on 2017/12/30.
|
||
|
// Copyright © 2017年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
|
||
|
@interface SwitchDeviceView : UIView<UITableViewDelegate,UITableViewDataSource>
|
||
|
|
||
|
/**
|
||
|
选中对象的回调
|
||
|
*/
|
||
|
@property (nonatomic,copy) void (^selectBlock)(id object);
|
||
|
|
||
|
/**
|
||
|
对象们
|
||
|
*/
|
||
|
@property (nonatomic,strong) NSArray<id> *objects;
|
||
|
|
||
|
-(instancetype)initWithFrame:(CGRect)frame ShowObjects:(NSArray<id> *)objects;
|
||
|
|
||
|
@end
|