RatingBar.h 540 B

1234567891011121314151617181920212223242526
  1. //
  2. // RatingBar.h
  3. // MyRatingBar
  4. //
  5. // Created by Leaf on 14-8-28.
  6. // Copyright (c) 2014年 Leaf. All rights reserved.
  7. //
  8. // 版权属于原作者
  9. // http://code4app.com (cn) http://code4app.net (en)
  10. // 发布代码于最专业的源码分享网站: Code4App.com
  11. #import <UIKit/UIKit.h>
  12. @interface RatingBar : UIView
  13. @property (nonatomic,assign) NSInteger starNumber;
  14. /*
  15. *调整底部视图的颜色
  16. */
  17. @property (nonatomic,strong) UIColor *viewColor;
  18. /*
  19. *是否允许可触摸
  20. */
  21. @property (nonatomic,assign) BOOL enable;
  22. @end