12345678910111213141516 |
- //
- // ContactSelectTableViewCell.h
- // WFChat UIKit
- //
- // Created by WF Chat on 2017/10/25.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface WFCUContactSelectTableViewCell : UITableViewCell
- @property(nonatomic, strong)NSString *friendUid;
- @property(nonatomic, assign)BOOL multiSelect;
- @property(nonatomic, assign)BOOL checked;
- @property(nonatomic, assign)BOOL disabled;
- @end
|