UIViewController函数调用顺序
Posted ch520
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIViewController函数调用顺序相关的知识,希望对你有一定的参考价值。
/*********** 0 执行1次而已 ******************/
+ (void)load {
NSLog(@" 0:%s", __func__);
}
/*********** 1 执行1次而已 ******************/
+ (void)initialize {
NSLog(@" 1:%s", __func__);
}
/*********** 常规的对象函数 ******************/
/// 2
- (instancetype)init {
self = [super init];
if (self) {
NSLog(@" 2:%s", __func__);
}
return self;
}
/// 3
- (void)loadView {
[super loadView];
NSLog(@" 3:%s", __func__);
}
/// 4
- (void)viewDidLoad {
[super viewDidLoad];
NSLog(@" 4:%s", __func__);
}
/// 5
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
NSLog(@" 5:%s", __func__);
}
/// 6
- (void)updateViewConstraints {
[super updateViewConstraints];
NSLog(@" 6:%s", __func__);
}
/// 7
- (void)viewWillLayoutSubviews {
[super viewWillLayoutSubviews];
NSLog(@" 7:%s", __func__);
}
/// 8
- (void)viewDidLayoutSubviews {
[super viewDidLayoutSubviews];
NSLog(@" 8:%s", __func__);
}
/// 9
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
NSLog(@" 9:%s", __func__);
}
/// 10
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
NSLog(@"10:%s", __func__);
}
/// 11
- (void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
NSLog(@"11:%s", __func__);
}
以上是关于UIViewController函数调用顺序的主要内容,如果未能解决你的问题,请参考以下文章
从 iOS 中的 UIViewController 类调用 JavaScript 函数
如何在子类中调用 UIViewController 的函数?
Android 逆向ART 脱壳 ( InMemoryDexClassLoader 脱壳 | BaseDexClassLoader 构造函数 | DexPathList 构造函数及后续调用 )(代码片
Android 逆向Android 进程注入工具开发 ( 注入代码分析 | 远程调用 目标进程中 libc.so 动态库中的 mmap 函数 二 | 准备参数 | 远程调用 mmap 函数 )(代码片