CommentScoreView.h 607 B

12345678910111213141516171819202122232425
  1. //
  2. // CommentScoreView.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/1/21.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RatingBar.h"
  10. @interface CommentScoreView : UIView
  11. @property (nonatomic, copy) NSString *sfbh;
  12. @property (nonatomic, copy) NSString *type;
  13. @property (nonatomic, retain) UILabel *starLabel;
  14. @property (nonatomic, retain) UILabel *scoreLabel;
  15. @property (nonatomic, retain) UILabel *countLabel;
  16. @property (nonatomic, retain) RatingBar *star1;
  17. @property (nonatomic, retain) RatingBar *star2;
  18. @property (nonatomic, retain) RatingBar *star3;
  19. @end