mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
402df72306
- Sends image rotated - If message is delete, delete the attachment db object and file - Delete attachment from detail view
19 lines
507 B
Objective-C
19 lines
507 B
Objective-C
//
|
|
// FullImageViewController.h
|
|
// Signal
|
|
//
|
|
// Created by Dylan Bourgeois on 11/11/14.
|
|
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "TSAttachmentStream.h"
|
|
#import "TSInteraction.h"
|
|
|
|
@interface FullImageViewController : UIViewController
|
|
|
|
- (instancetype)initWithAttachment:(TSAttachmentStream*)attachment fromRect:(CGRect)rect forInteraction:(TSInteraction*)interaction;
|
|
|
|
- (void)presentFromViewController:(UIViewController*)viewController;
|
|
|
|
@end
|