/samples/MarkerMurder/Classes/MainView.m
http://github.com/route-me/route-me · Objective C · 29 lines · 13 code · 10 blank · 6 comment · 1 complexity · f3b5bcbe3d13441c13be7f06e772a2a4 MD5 · raw file
- //
- // MainView.m
- // SampleMap : Diagnostic map
- //
- #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