暫無描述

DetailPriceExplainCell.h 941B

123456789101112131415161718192021222324252627
  1. //
  2. // DetailPriceExplainCell.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/7/20.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PdDetailCellProtocol.h"
  10. #import "UITableViewCell+PindanDetail.h"
  11. @interface DetailPriceExplainCell : UITableViewCell
  12. @property (nonatomic, strong, readonly) UIButton *helpBtn;
  13. @property (nonatomic, strong, readonly) UILabel *countTimeLabel;
  14. @property (nonatomic, strong, readonly) UILabel *priceLabel;
  15. @property (nonatomic, strong, readonly) UIButton *collectBtn;
  16. @property (nonatomic, assign) CGFloat referPrice;
  17. @property (nonatomic, assign) BOOL showHelpeView;
  18. @property (nonatomic, weak) id <DetailPriceExplainCellDelegate> delegate;
  19. - (void)setVipPrice:(NSString *)vipPrice;
  20. - (void)resetTimeStrWithInterval:(NSTimeInterval)timeCount isBegin:(BOOL)isBegin;
  21. @end