Swiftgram/Classes/BITImageAnnotation.m
2014-02-25 15:07:59 +01:00

35 lines
565 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;
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{
// Drawing code
}
*/
@end