1234567891011121314151617 |
- //
- // WFCUGroupMemberTableViewCell.h
- // WFChat UIKit
- //
- // Created by WF Chat on 2017/9/18.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface WFCUGroupMemberTableViewCell : UITableViewCell
- @property (nonatomic, assign)BOOL isSelectable;
- @property (nonatomic, assign)BOOL isSelected;
- @property (nonatomic, strong)UIImageView *portraitView;
- @property (nonatomic, strong)UILabel *groupNameView;
- @property (nonatomic, strong)UIImageView *selectView;
- @end
|