shouhuView.h 596 B

12345678910111213141516171819202122232425
  1. //
  2. // shouhuView.h
  3. // yunbaolive
  4. //
  5. // Created by Boom on 2018/8/9.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol shouhuViewDelegate <NSObject>
  10. - (void)removeShouhuView;
  11. //-(void)pushCoinV;
  12. - (void)buyShouhuSuccess:(NSDictionary *)dic;
  13. @end
  14. @interface shouhuView : UIView<UIAlertViewDelegate>
  15. @property(nonatomic,weak)id<shouhuViewDelegate> delegate;
  16. @property (nonatomic,strong)NSString *liveUid;
  17. @property (nonatomic,strong)NSString *stream;
  18. @property (nonatomic,strong)NSString *guardType;
  19. - (void)requestData;
  20. - (void)show;
  21. - (void)goBuy;
  22. @end