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