PublishLiveShareView.h 730 B

12345678910111213141516171819202122232425262728
  1. //
  2. // PublishLiveShareView.h
  3. // BuguLive
  4. //
  5. // Created by xgh on 2017/8/28.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "GlobalVariables.h"
  10. @interface PublishLiveShareView : UIView
  11. {
  12. UIButton *weiboButton;
  13. UIButton *wechatButton;
  14. UIButton *qqButton;
  15. UIButton *friendButton;
  16. UIButton *qzoreButton;
  17. CGFloat start_x;
  18. }
  19. @property (nonatomic, copy)NSString *shareStr;
  20. @property (nonatomic, strong)GlobalVariables *BuguLive;
  21. @property (nonatomic, strong)NSMutableArray *shareImgViewArray;
  22. @property (nonatomic, strong)UIButton *selectedBtn;
  23. @end