1234567891011121314151617181920 |
- //
- // KXMainDetailViewController.h
- // QBCS
- //
- // Created by kuxuan on 2017/6/6.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import "KXBaseViewController.h"
- @interface KXMainDetailViewController : KXBaseViewController
- @property (nonatomic,copy)NSString *detailID;
- @property (nonatomic,copy)NSString *titleString;;
- //跳转到详情页的入口来源
- @property (nonatomic,copy) NSString *enterSource;
- // 是不是present进来的
- @property (nonatomic,assign) BOOL isPresent;
- @end
|