// // BGShareView.h // BuguLive // // Created by fanwe2014 on 2017/3/23. // Copyright © 2017年 xfg. All rights reserved. // #import @protocol shareDeleGate //点击分享 - (void)clickShareImgViewWithTag:(int)tag; @end @interface BGShareView : UIView @property (nonatomic,weak)id SDeleGate; @property (nonatomic,strong)GlobalVariables *BuguLive; @property (nonatomic,strong)NSMutableArray *shareArray; //装分享的数组 @property (nonatomic,strong)UIView *buttomView; //分享的底部白色view @property (nonatomic,strong)UILabel *shareLabel; //分享的label -(id)initWithFrame:(CGRect)frame Delegate:(id)delegate; @end