mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
26 lines
637 B
Objective-C
26 lines
637 B
Objective-C
//
|
|
// BITImageAnnotationViewController.h
|
|
// HockeySDK
|
|
//
|
|
// Created by Moritz Haarmann on 14.02.14.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class BITImageAnnotationViewController;
|
|
|
|
@protocol BITImageAnnotationDelegate <NSObject>
|
|
|
|
- (void)annotationControllerDidCancel:(BITImageAnnotationViewController *)annotationController;
|
|
- (void)annotationController:(BITImageAnnotationViewController *)annotationController didFinishWithImage:(UIImage *)image;
|
|
|
|
@end
|
|
|
|
@interface BITImageAnnotationViewController : UIViewController
|
|
|
|
@property (nonatomic, strong) UIImage *image;
|
|
@property (nonatomic, weak) id<BITImageAnnotationDelegate> delegate;
|
|
|
|
@end
|