//
//  ShareViewController.h
//  Lighting
//
//  Created by mac on 16/5/23.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"
@protocol SharePicturedelegate <NSObject>

@required

//回调
- (void)ShareProductImage:(UIImage *)image ;

@end

@interface ShareViewController : BaseViewController
@property (nonatomic,assign) id<SharePicturedelegate> delegate;
@property (nonatomic,strong) UIButton *weiXinFriend;
@property (nonatomic,strong) UIButton *weiXinFriendCircle;
@property (nonatomic,strong) UIButton *sinaMicroBlog ;
@end