12345678910111213141516171819 |
- //
- // MyDetailViewController.h
- // DSH
- //
- // Created by 张毅成 on 2018/9/26.
- // Copyright © 2018 WZX. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MyModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MyDetailViewController : UIViewController
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (strong, nonatomic) MyModel *model;
- @end
- NS_ASSUME_NONNULL_END
|