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

iPhone

开发平台:

MultiPlatform

  1. //
  2. //  QuartzFunView.h
  3. //  QuartzFun
  4. //
  5. //  Created by Jeff LaMarche on 7/31/08.
  6. //  Copyright 2008 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "Constants.h"
  10. @interface QuartzFunView : UIView {
  11. CGPoint firstTouch;
  12. CGPoint lastTouch;
  13. UIColor *currentColor;
  14. ShapeType shapeType;
  15. UIImage *drawImage;
  16. CGRect redrawRect;
  17. BOOL useRandomColor;
  18. }
  19. @property CGPoint firstTouch;
  20. @property CGPoint lastTouch;
  21. @property (nonatomic, retain) UIColor *currentColor;
  22. @property ShapeType shapeType;
  23. @property (nonatomic, retain) UIImage *drawImage;
  24. @property (readonly) CGRect currentRect;
  25. @property CGRect redrawRect;
  26. @property BOOL useRandomColor;
  27. @end