CommentWithStarView.h 723 Bytes
//
//  CommentWithStarView.h
//  redstar
//
//  Created by admin on 15/11/24.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "StarBar.h"
@interface CommentWithStarView : UIView <UITextViewDelegate>
@property (nonatomic, strong) UILabel *titleLabel;
@property (nonatomic, strong) UIButton *quitBtn;

@property (nonatomic, strong) UILabel *starLabel;

@property (nonatomic, strong) UILabel *commentLabel;

@property (nonatomic, strong) UIButton *sureBtn;

@property (nonatomic, strong) StarBar *starBar;
@property (nonatomic, strong) UITextView *contentTextView;
@property (nonatomic, strong) UILabel *placeholderLabel2;
@property (nonatomic, strong) UIImageView *backImageView2;
@end