+ Some basic image editing functionality.

This commit is contained in:
moritz haarmann
2014-02-25 15:07:59 +01:00
parent 70e2b6635c
commit 28eee0eb3d
11 changed files with 261 additions and 9 deletions

View 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