BGShareView.h 733 B

12345678910111213141516171819202122232425
  1. //
  2. // BGShareView.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 2017/3/23.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol shareDeleGate <NSObject>
  10. //点击分享
  11. - (void)clickShareImgViewWithTag:(int)tag;
  12. @end
  13. @interface BGShareView : UIView
  14. @property (nonatomic,weak)id<shareDeleGate> SDeleGate;
  15. @property (nonatomic,strong)GlobalVariables *BuguLive;
  16. @property (nonatomic,strong)NSMutableArray *shareArray; //装分享的数组
  17. @property (nonatomic,strong)UIView *buttomView; //分享的底部白色view
  18. @property (nonatomic,strong)UILabel *shareLabel; //分享的label
  19. -(id)initWithFrame:(CGRect)frame Delegate:(id<shareDeleGate>)delegate;
  20. @end