/samples/MapTestbedFlipMaps/Classes/MainView.m
http://github.com/route-me/route-me · Objective C · 29 lines · 13 code · 10 blank · 6 comment · 1 complexity · 2cee2e3569bc30f9b7f49dfb4aff268e MD5 · raw file
- //
- // MainView.m
- // MapTestbed : 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