123456789101112131415161718192021222324252627282930313233 |
- //
- // DRSuperChildListVC.m
- // YouHuiProject
- //
- // Created by liuxueli on 2018/12/10.
- // Copyright © 2018 kuxuan. All rights reserved.
- //
- #import "DRSuperChildListVC.h"
- @interface DRSuperChildListVC ()
- @end
- @implementation DRSuperChildListVC
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.view.backgroundColor=[UIColor clearColor];
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- @end
|