|
//
// TPShareContentControlelr.h
// ThePaperHD
//
// Created by scar1900 on 15/2/12.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPHttpController.h"
#import "shareUtil.h"
typedef enum
{
expandLeft = 0,
expandRight = 1,
expandLeftBottom = 2
}
expandDirection;
@protocol shareContentControllerDelegate <NSObject>
- (void)dismissContent;
@end
@interface TPShareContentControlelr : TPHttpController
@property(nonatomic, strong)UIImage *shareImage;
@property(nonatomic, assign)CGPoint startPoint;
@property(nonatomic, assign)expandDirection direction;
@property(nonatomic, weak)id<shareContentControllerDelegate> delegate;
@property(nonatomic, strong)contentObjectBO *contentBO;
@property(nonatomic, assign)BOOL hasImage;
@property(nonatomic, assign)shareStyle sharestyle;
- (void)dismissShareContent:(void (^)(void))completion;
- (void)layoutAfterOrientationChange;
@end
|