mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
29 lines
405 B
Objective-C
29 lines
405 B
Objective-C
//
|
|
// BITImageAnnotation.m
|
|
// HockeySDK
|
|
//
|
|
// Created by Moritz Haarmann on 24.02.14.
|
|
//
|
|
//
|
|
|
|
#import "BITImageAnnotation.h"
|
|
|
|
@implementation BITImageAnnotation
|
|
|
|
- (id)initWithFrame:(CGRect)frame
|
|
{
|
|
self = [super initWithFrame:frame];
|
|
if (self) {
|
|
// Initialization code
|
|
//self.backgroundColor = [UIColor redColor];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
|
|
-(BOOL)resizable {
|
|
return NO;
|
|
}
|
|
|
|
@end
|