| // | |
| // MainView.m | |
| // iWebDriver | |
| // | |
| // Created by Joseph Gentle on 11/27/08. | |
| // Copyright __MyCompanyName__ 2008. 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 |