// // MainView.m // iCuke // // Created by Rob Holland on 02/03/2010. // Copyright The IT Refinery 2010. All rights reserved. // #import "MainView.h" @implementation MainView - (id)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { // Initialization code } return self; } - (void)drawRect:(CGRect)rect { // Drawing code } - (void)dealloc { [super dealloc]; } @end