CCProgressView.h 422 B

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