AuctionPayView.h 624 B

12345678910111213141516171819202122232425262728
  1. //
  2. // AuctionPayView.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/10/26.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "UserModel.h"
  10. @protocol AuctionPayViewDelegate<NSObject>
  11. - (void)clickRechargeAction;
  12. - (void)clickToPay;
  13. - (void)cancelPay;
  14. @end
  15. @interface AuctionPayView : UIView
  16. @property (nonatomic, strong) UILabel * timeLabel; //倒计时
  17. @property (nonatomic, weak) id<AuctionPayViewDelegate>delegate;
  18. - (void)setDiamondsText:(NSString *)txt;
  19. - (void)creatWith:(UserModel *)model withCurrentDiamonds:(NSInteger )currentDiamonds withPrice:(NSString *)priceStr;
  20. @end