commentVC.h 674 B

1234567891011121314151617181920212223242526
  1. //
  2. // commentVC.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/1/19.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface commentVC : UIViewController
  10. @property (weak, nonatomic) IBOutlet UITextView *commentTextView;
  11. @property (weak, nonatomic) IBOutlet UILabel *label1;
  12. @property (weak, nonatomic) IBOutlet UILabel *label2;
  13. @property (weak, nonatomic) IBOutlet UILabel *label3;
  14. @property (weak, nonatomic) IBOutlet UILabel *label4;
  15. @property (weak, nonatomic) IBOutlet UIButton *commentBtn;
  16. - (IBAction)clickToComment:(id)sender;
  17. @property (nonatomic, copy) NSString *commentType;
  18. @property (nonatomic, copy) NSString *coachzh;
  19. @end