|
//
// imageShareContent.h
// ThePaperBase
//
// Created by YoungLee on 15/11/12.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import "shareUtil.h"
#import <UIKit/UIKit.h>
@protocol imageShareContentDelegate <NSObject>
- (void)didDismissShareContent:(UIView*)contentView;
@end
//图片分享
@interface imageShareContent : UIView
/**
* 在指定View上弹出分享试图
*
* @param view 分享视图父页面
*/
- (void)presentShareContentInView:(UIView*)view sender:(id)sender;
@property(nonatomic, weak)id<imageShareContentDelegate> delegate;
- (void)dismissShareContent;
@property(nonatomic, strong)contentObjectBO *contentBO;
@property(nonatomic, strong)UIImage *shareImg;
@property(nonatomic, assign)shareStyle sharestyle;
@property(nonatomic, strong)UIView *shareContentView;
@property(nonatomic, strong)UIViewController *baseController;
@end
|