// // FlipsideView.m // QuickTweet // // Created by Floyd Price on 10/09/2009. // Copyright Component Workshop Ltd 2009. 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