Swiftgram/Classes/BITImageAnnotationViewController.h
2014-02-25 15:07:59 +01:00

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