/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

  1. //
  2. // FlipsideView.m
  3. // MapTestbed : Diagnostic map
  4. //
  5. #import "FlipsideView.h"
  6. @implementation FlipsideView
  7. - (id)initWithFrame:(CGRect)frame {
  8. if (self = [super initWithFrame:frame]) {
  9. // Initialization code
  10. }
  11. return self;
  12. }
  13. - (void)drawRect:(CGRect)rect {
  14. // Drawing code
  15. }
  16. - (void)dealloc {
  17. [super dealloc];
  18. }
  19. @end