ShareView.h
465 Bytes
//
// ShareView.h
// IVTMeLiveTwo
//
// Created by XRG on 16/8/11.
// Copyright © 2016年 QLQ. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ShareContentModel.h"
@interface ShareView : UIView
@property (nonatomic, strong) UIView *shareButtonView;//显示分享按钮的view
+ (ShareView *)sharedInstance;
/**
* 显示分享界面
*/
- (void)showWithEntity:(ShareContentModel *)entity;
/**
* 隐藏分享界面
*/
- (void)hidden;
@end