ExchangeView.h 491 B

12345678910111213141516171819202122232425
  1. //
  2. // ExchangeView.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/3/14.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "AccountRechargeModel.h"
  10. @protocol ExchangeViewDelegate<NSObject>
  11. - (void)choseRecharge:(BOOL )recharge orExchange:(BOOL )exchange;
  12. @end
  13. @interface ExchangeView : BGBaseView
  14. @property (nonatomic, strong) AccountRechargeModel * model;
  15. @property (nonatomic, weak) id<ExchangeViewDelegate>delegate;
  16. - (void)cancleExchange;
  17. @end