12345678910111213141516 |
- //
- // KBMineBlanceView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/17.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^MoneyBlock)(void);
- @interface KBMineBlanceView : UIView
- @property(nonatomic,copy)MoneyBlock moneyBlock;
- - (void)setBlancePrice:(NSString *)blance;
- @end
|