AFView.h 481 B

12345678910111213141516171819
  1. //
  2. // AFView.h
  3. // animationFrame
  4. //
  5. // Created by pingshw on 14-5-27.
  6. // Copyright (c) 2014年 pingshw. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface AFView : UIView
  10. @property (nonatomic) CGFloat min_X;
  11. @property (nonatomic) CGFloat min_Y;
  12. @property (nonatomic) CGFloat max_X;
  13. @property (nonatomic) CGFloat max_Y;
  14. @property (nonatomic, strong) NSArray *data;
  15. @property (nonatomic, strong) NSArray *x_labels;
  16. @property (nonatomic, strong) NSArray *y_labels;
  17. @end