FlipsideView.m
421 Bytes
//
// FlipsideView.m
// Images
//
// Created by Joseph Gentle on 13/08/08.
// Copyright __MyCompanyName__ 2008. All rights reserved.
//
#import "FlipsideView.h"
@implementation FlipsideView
- (id)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
// Initialization code
}
return self;
}
- (void)drawRect:(CGRect)rect {
// Drawing code
}
- (void)dealloc {
[super dealloc];
}
@end