1234567891011121314151617 |
- //
- // SubmitBottomView.h
- // FirstLink
- //
- // Created by jack on 15/6/18.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface SubmitBottomView : UIView
- @property (nonatomic, strong, readonly) UILabel *priceLabel;
- @property (nonatomic, strong, readonly) UIButton *confirmBtn;
- - (void)refreshPriceWithAmount:(long)amount totalFee:(CGFloat)totalFee;
- @end
|