DetPlanVC.h 582 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // DetPlanVC.h
  3. // jiaPei
  4. //
  5. // Created by apple on 15/12/23.
  6. // Copyright © 2015年 JCZ. All rights reserved.
  7. //
  8. //这个页面也可以删除不要
  9. #import <UIKit/UIKit.h>
  10. #import "CoachPlanVC.h"
  11. @interface DetPlanVC : UIViewController
  12. {
  13. //主要是提供给postVC添加发布按钮。
  14. UIScrollView* scroll;
  15. UIButton* btnDate,* btnTime,*btnSubj,*btnCrTime;//用于添加点击事件。
  16. UITextView* msgTit, *msgCont,*msgNum,*msgTel;
  17. }
  18. @property (nonatomic,strong) NSDictionary* model;
  19. @property (nonatomic,retain) CoachPlanVC *coachVC;
  20. @end