12345678910111213141516171819 |
- //
- // AFView.h
- // animationFrame
- //
- // Created by pingshw on 14-5-27.
- // Copyright (c) 2014年 pingshw. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface AFView : UIView
- @property (nonatomic) CGFloat min_X;
- @property (nonatomic) CGFloat min_Y;
- @property (nonatomic) CGFloat max_X;
- @property (nonatomic) CGFloat max_Y;
- @property (nonatomic, strong) NSArray *data;
- @property (nonatomic, strong) NSArray *x_labels;
- @property (nonatomic, strong) NSArray *y_labels;
- @end
|