mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
+ Some basic image editing functionality.
This commit is contained in:
34
Classes/BITImageAnnotation.m
Normal file
34
Classes/BITImageAnnotation.m
Normal file
@@ -0,0 +1,34 @@
|
||||
//
|
||||
// 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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
// Only override drawRect: if you perform custom drawing.
|
||||
// An empty implementation adversely affects performance during animation.
|
||||
- (void)drawRect:(CGRect)rect
|
||||
{
|
||||
// Drawing code
|
||||
}
|
||||
*/
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user