FlipsideView.m
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:0k
源码类别:

iPhone

开发平台:

MultiPlatform

  1. //
  2. //  FlipsideView.m
  3. //  AppSettings
  4. //
  5. //  Created by Jeff LaMarche on 7/24/08.
  6. //  Copyright __MyCompanyName__ 2008. All rights reserved.
  7. //
  8. #import "FlipsideView.h"
  9. @implementation FlipsideView
  10. - (id)initWithFrame:(CGRect)frame {
  11. if (self = [super initWithFrame:frame]) {
  12. // Initialization code
  13. }
  14. return self;
  15. }
  16. - (void)drawRect:(CGRect)rect {
  17. // Drawing code
  18. }
  19. - (void)dealloc {
  20. [super dealloc];
  21. }
  22. @end