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.
43 lines
688 B
43 lines
688 B
// |
|
// addressCell.h |
|
// b |
|
// |
|
// Created by kaidan on 2017/1/12. |
|
// Copyright © 2017年 kaidan. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
#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
|
|
|