// // DetailPriceExplainCell.h // FirstLink // // Created by jack on 15/7/20. // Copyright (c) 2015年 FirstLink. All rights reserved. // #import #import "PdDetailCellProtocol.h" #import "UITableViewCell+PindanDetail.h" @interface DetailPriceExplainCell : UITableViewCell @property (nonatomic, strong, readonly) UIButton *helpBtn; @property (nonatomic, strong, readonly) UILabel *countTimeLabel; @property (nonatomic, strong, readonly) UILabel *priceLabel; @property (nonatomic, strong, readonly) UIButton *collectBtn; @property (nonatomic, assign) CGFloat referPrice; @property (nonatomic, assign) BOOL showHelpeView; @property (nonatomic, weak) id delegate; - (void)setVipPrice:(NSString *)vipPrice; - (void)resetTimeStrWithInterval:(NSTimeInterval)timeCount isBegin:(BOOL)isBegin; @end