// // addressCell.h // b // // Created by kaidan on 2017/1/12. // Copyright © 2017年 kaidan. All rights reserved. // #import #import "TableCell.h" typedef NS_ENUM(NSUInteger, ContactType) { ContactTypeManager, //管理员用户 ContactTypeMember, // 成员用户 ContactTypeWhiteContact, //白名单用户 }; @interface ContactCell : baseCell // cell 的高度为 80 /* *头像 */ @property(nonatomic, strong) UIImageView* img_Head; /* *昵称 */ @property(nonatomic, strong) UILabel* label_Name; /* *号码 */ @property(nonatomic, strong) UILabel* label_Phone; /* *用户类型 */ @property(nonatomic, assign) ContactType type; @end