123456789101112131415161718192021222324252627 |
- //
- // DetailPriceExplainCell.h
- // FirstLink
- //
- // Created by jack on 15/7/20.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #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 <DetailPriceExplainCellDelegate> delegate;
- - (void)setVipPrice:(NSString *)vipPrice;
- - (void)resetTimeStrWithInterval:(NSTimeInterval)timeCount isBegin:(BOOL)isBegin;
- @end
|