CCProgressView.h 385 B

12345678910111213141516171819
  1. //
  2. // CCProgressView.h
  3. // CCNavigationProgress
  4. //
  5. // Created by Marino Faggiana on 22/06/16.
  6. // Copyright (c) 2016 TWS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CCProgressView : UIView
  10. /**
  11. * The current progress shown by the receiver.
  12. * The progress value ranges from 0 to 1. The default value is 0.
  13. */
  14. @property (nonatomic, assign) float progress;
  15. @end