1234567891011121314151617181920212223242526 |
- //
- // commentVC.h
- // jiaPei
- //
- // Created by apple on 16/1/19.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface commentVC : UIViewController
- @property (weak, nonatomic) IBOutlet UITextView *commentTextView;
- @property (weak, nonatomic) IBOutlet UILabel *label1;
- @property (weak, nonatomic) IBOutlet UILabel *label2;
- @property (weak, nonatomic) IBOutlet UILabel *label3;
- @property (weak, nonatomic) IBOutlet UILabel *label4;
- @property (weak, nonatomic) IBOutlet UIButton *commentBtn;
- - (IBAction)clickToComment:(id)sender;
- @property (nonatomic, copy) NSString *commentType;
- @property (nonatomic, copy) NSString *coachzh;
- @end
|