// // FKVipStatusCell.h // FirstLink // // Created by jack on 15/9/11. // Copyright (c) 2015年 FirstLink. All rights reserved. // #import #import "AvatarImageView.h" @interface FKVipStatusCell : UITableViewCell @property (nonatomic, strong) AvatarImageView *headView; @property (nonatomic, strong) UILabel *nickLabel; @property (nonatomic, strong) UIImageView *vipIcon; @property (nonatomic, strong) UILabel *vipLabel; @property (nonatomic, strong) UILabel *vipTipLabel; @property (nonatomic, strong) UILabel *dayLabel; @property (nonatomic, strong) UILabel *dayTipLabel; - (void)config:(VipState)vipState remainDays:(NSUInteger)days; + (CGFloat)height; @end