PKPendingView.h 596 B

12345678910111213141516171819202122232425
  1. //
  2. // PKPendingView.h
  3. // Download
  4. //
  5. // Created by Pavel on 30/05/15.
  6. // Copyright (c) 2015 Katunin. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PKCircleView.h"
  10. IB_DESIGNABLE
  11. @interface PKPendingView : UIControl
  12. @property (nonatomic, weak, readonly) PKCircleView *circleView;
  13. @property (nonatomic, assign) IBInspectable CGFloat radius;
  14. @property (nonatomic, assign) IBInspectable CGFloat lineWidth;
  15. @property (nonatomic, assign) IBInspectable CGFloat emptyLineRadians;
  16. @property (nonatomic, assign) IBInspectable CGFloat spinTime;
  17. - (void)startSpin;
  18. - (void)stopSpin;
  19. @end