PublishLiveTopView.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // PublishLiveTopView.h
  3. // BuguLive
  4. //
  5. // Created by xgh on 2017/8/24.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseView.h"
  9. #import <QMUIButton.h>
  10. @class PublishLiveTopView;
  11. @protocol PublishLiveTopDelegate <NSObject>
  12. - (void)selectedTheClassirmAction;
  13. - (void)closeThePublishLive:(PublishLiveTopView *)topView;
  14. - (void)ispracychangeActionDelegate:(BOOL)ispraicy;
  15. - (void)clickPasswordActionDelegate:(BOOL)password;
  16. - (void)clickShopActionDelegate:(BOOL)shop;
  17. - (void)classifyButtonActionDelegate;
  18. @end
  19. @interface PublishLiveTopView : BGBaseView<UITextFieldDelegate>
  20. @property (nonatomic, assign)BOOL isCanLocation;
  21. @property (nonatomic, assign)BOOL pravicy;
  22. @property (nonatomic, assign)BOOL isShop;
  23. @property (nonatomic, weak) id<PublishLiveTopDelegate>delegate;
  24. @property (nonatomic, strong)QMUIButton *locationBtn;
  25. @property (nonatomic, strong)QMUIButton *pravicyBtn;
  26. @property (nonatomic, strong)QMUIButton *classifyBtn;
  27. @property (nonatomic, strong)QMUIButton *passwordBtn;
  28. @property(nonatomic, strong) NSString *password;
  29. @property (nonatomic, strong)QMUIButton *closeBtn;
  30. @property (nonatomic, copy)NSString *locationCityString;
  31. @property (nonatomic, copy)NSString *provinceSrting;
  32. @property(nonatomic, strong) QMUIButton *shopBtn;
  33. @end