1234567891011121314151617181920212223242526 |
- /************************************************************
- * * EaseMob CONFIDENTIAL
- * __________________
- * Copyright (C) 2013-2014 EaseMob Technologies. All rights reserved.
- *
- * NOTICE: All information contained herein is, and remains
- * the property of EaseMob Technologies.
- * Dissemination of this information or reproduction of this material
- * is strictly forbidden unless prior written permission is obtained
- * from EaseMob Technologies.
- */
- #import <UIKit/UIKit.h>
- #import <APAvatarImageView.h>
- #import "CommonEnum.h"
- @interface CustomerListCell : UITableViewCell
- @property (nonatomic, strong) APAvatarImageView *headView;
- @property (nonatomic, strong) UILabel *nickLabel;
- @property (nonatomic, strong) UILabel *messageLabel;
- @property (nonatomic, strong) UILabel *unreadLabel;
- @property (nonatomic, strong) UILabel *timeLabel;
- @end
|