Bez popisu

FKVipStatusCell.h 732B

1234567891011121314151617181920212223242526272829
  1. //
  2. // FKVipStatusCell.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/9/11.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "AvatarImageView.h"
  10. @interface FKVipStatusCell : UITableViewCell
  11. @property (nonatomic, strong) AvatarImageView *headView;
  12. @property (nonatomic, strong) UILabel *nickLabel;
  13. @property (nonatomic, strong) UIImageView *vipIcon;
  14. @property (nonatomic, strong) UILabel *vipLabel;
  15. @property (nonatomic, strong) UILabel *vipTipLabel;
  16. @property (nonatomic, strong) UILabel *dayLabel;
  17. @property (nonatomic, strong) UILabel *dayTipLabel;
  18. - (void)config:(VipState)vipState remainDays:(NSUInteger)days;
  19. + (CGFloat)height;
  20. @end