12345678910111213141516171819202122232425 |
- //
- // CommentScoreView.h
- // jiaPei
- //
- // Created by apple on 16/1/21.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RatingBar.h"
- @interface CommentScoreView : UIView
- @property (nonatomic, copy) NSString *sfbh;
- @property (nonatomic, copy) NSString *type;
- @property (nonatomic, retain) UILabel *starLabel;
- @property (nonatomic, retain) UILabel *scoreLabel;
- @property (nonatomic, retain) UILabel *countLabel;
- @property (nonatomic, retain) RatingBar *star1;
- @property (nonatomic, retain) RatingBar *star2;
- @property (nonatomic, retain) RatingBar *star3;
- @end
|