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