No Description

SubmitBottomView.h 407B

1234567891011121314151617
  1. //
  2. // SubmitBottomView.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/6/18.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SubmitBottomView : UIView
  10. @property (nonatomic, strong, readonly) UILabel *priceLabel;
  11. @property (nonatomic, strong, readonly) UIButton *confirmBtn;
  12. - (void)refreshPriceWithAmount:(long)amount totalFee:(CGFloat)totalFee;
  13. @end