Swiftgram/Classes/BITImageAnnotation.h
2014-04-28 01:32:42 +02:00

25 lines
397 B
Objective-C

//
// BITImageAnnotation.h
// HockeySDK
//
// Created by Moritz Haarmann on 24.02.14.
//
//
#import <UIKit/UIKit.h>
@interface BITImageAnnotation : UIView {
BOOL _selected;
}
@property (nonatomic) CGSize movedDelta;
@property (nonatomic, weak) UIImage *sourceImage;
@property (nonatomic) CGRect imageFrame;
-(BOOL)resizable;
- (void)setSelected:(BOOL)selected;
- (BOOL)isSelected;
@end