CustomProgress.h 423 B

1234567891011121314151617
  1. //
  2. // CustomProgress.h
  3. // WisdomPioneer
  4. //
  5. // Created by 主用户 on 16/4/11.
  6. // Copyright © 2016年 江萧. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CustomProgress : UIView
  10. @property(nonatomic, retain)UIImageView *bgimg;
  11. @property(nonatomic, retain)UIImageView *leftimg;
  12. @property(nonatomic, retain)UILabel *presentlab;
  13. @property(nonatomic)float maxValue;
  14. -(void)setPresent:(double)present;
  15. @end