美文网首页
UIViewController的生命周期

UIViewController的生命周期

作者: Jean_Lina | 来源:发表于2021-06-17 15:56 被阅读0次
    - (instancetype)init
    {
        self = [super init];
        if (self) {
            NSLog(@"%s", __func__);
        }
        return self;
    }
    - (void)loadView {
        [super loadView];
        NSLog(@"%s", __func__);
    }
    - (void)viewDidLoad {
        [super viewDidLoad];
        NSLog(@"%s", __func__);
    }
    - (void)viewWillAppear:(BOOL)animated {
        [super viewWillAppear:animated];
        NSLog(@"%s", __func__);
    }
    - (void)viewDidAppear:(BOOL)animated {
        [super viewDidAppear:animated];
        NSLog(@"%s", __func__);
    }
    - (void)viewWillDisappear:(BOOL)animated {
        [super viewWillDisappear:animated];
        NSLog(@"%s", __func__);
    }
    - (void)viewDidDisappear:(BOOL)animated {
        [super viewDidDisappear:animated];
        NSLog(@"%s", __func__);
    }
    - (void)dealloc
    {
        NSLog(@"%s", __func__);
    }
    

    相关文章

      网友评论

          本文标题:UIViewController的生命周期

          本文链接:https://www.haomeiwen.com/subject/cqpcyltx.html