悟空记账

XHSScreenshotFingerDrawLineModel.h 522B

1234567891011121314151617181920212223
  1. //
  2. // XHSScreenshotFingerDrawLineModel.h
  3. // XinHuaShe
  4. //
  5. // Created by 王强 on 2017/12/21.
  6. // Copyright © 2017年 xinhuanmm. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface XHSScreenshotFingerDrawLineModel : NSObject
  11. /** 线条所包含的所有点 */
  12. @property (nonatomic,strong)NSMutableArray <__kindof NSValue *>*linePoints;
  13. /** 线条的颜色 */
  14. @property (nonatomic,strong)UIColor *lineColor;
  15. /** 线条的粗细 */
  16. @property (nonatomic)float lineWidth;
  17. @end