MDSegmentView icon indicating copy to clipboard operation
MDSegmentView copied to clipboard

试图的生命周期不完整

Open YuanJiaShuai opened this issue 6 years ago • 0 comments

- (void)viewWillAppear:(BOOL)animated{
    [super viewWillAppear:animated];
    NSLog(@"viewWillAppear");
}

- (void)viewDidAppear:(BOOL)animated{
    [super viewDidAppear:animated];
    NSLog(@"viewDidAppear");
}

- (void)viewWillDisappear:(BOOL)animated{
    [super viewWillDisappear:animated];
    NSLog(@"viewWillDisappear");
}

- (void)viewDidDisappear:(BOOL)animated{
    [super viewDidDisappear:animated];
    NSLog(@"viewDidDisappear");
}

不能系统的执行上面的方法

YuanJiaShuai avatar Jun 15 '18 06:06 YuanJiaShuai