PKCircleProgressView.h 607 B

1234567891011121314151617181920
  1. //
  2. // PKCircleProgressView.h
  3. // PKDownloadButton
  4. //
  5. // Created by Pavel on 28/05/15.
  6. // Copyright (c) 2015 Katunin. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. IB_DESIGNABLE
  10. @interface PKCircleProgressView : UIView
  11. @property (nonatomic, assign) IBInspectable CGFloat progress; /// 0.f - 1.0f
  12. @property (nonatomic, assign) IBInspectable CGFloat filledLineWidth; /// 0.f +
  13. @property (nonatomic, assign) IBInspectable CGFloat emptyLineWidth; /// 0.f +
  14. @property (nonatomic, assign) IBInspectable CGFloat radius; /// 0.f +
  15. @property (nonatomic, assign) IBInspectable BOOL filledLineStyleOuter;
  16. @end