DALabeledCircularProgressView.h 510 B

1234567891011121314151617181920212223
  1. //
  2. // DALabeledCircularProgressView.h
  3. // DACircularProgressExample
  4. //
  5. // Created by Josh Sklar on 4/8/14.
  6. // Copyright (c) 2014 Shout Messenger. All rights reserved.
  7. //
  8. #import "DACircularProgressView.h"
  9. /**
  10. @class DALabeledCircularProgressView
  11. @brief Subclass of DACircularProgressView that adds a UILabel.
  12. */
  13. @interface DALabeledCircularProgressView : DACircularProgressView
  14. /**
  15. UILabel placed right on the DACircularProgressView.
  16. */
  17. @property (strong, nonatomic) UILabel *progressLabel;
  18. @end