session-ios/Signal/src/ViewControllers/FullImageViewController.h

21 lines
612 B
C
Raw Normal View History

2014-10-29 21:58:58 +01:00
//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
2014-10-29 21:58:58 +01:00
//
#import <UIKit/UIKit.h>
#import "TSAttachmentStream.h"
#import "TSInteraction.h"
#import "OWSMessageData.h"
2014-10-29 21:58:58 +01:00
@interface FullImageViewController : UIViewController
- (instancetype)initWithAttachment:(TSAttachmentStream *)attachment
fromRect:(CGRect)rect
forInteraction:(TSInteraction *)interaction
messageItem:(id<OWSMessageData>)messageItem
isAnimated:(BOOL)animated;
2014-10-29 21:58:58 +01:00
- (void)presentFromViewController:(UIViewController *)viewController;
2014-10-29 21:58:58 +01:00
@end