mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
19 lines
317 B
Objective-C
19 lines
317 B
Objective-C
//
|
|
// BITImageAnnotation.h
|
|
// HockeySDK
|
|
//
|
|
// Created by Moritz Haarmann on 24.02.14.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface BITImageAnnotation : UIView
|
|
@property (nonatomic) CGSize movedDelta;
|
|
@property (nonatomic, weak) UIImage *sourceImage;
|
|
@property (nonatomic) CGRect imageFrame;
|
|
|
|
-(BOOL)resizable;
|
|
|
|
@end
|