gpt4 book ai didi

objective-c - 为什么我需要在 iOs 中使用 [super %methodname%]?

转载 作者:可可西里 更新时间:2023-11-01 06:18:34 24 4
gpt4 key购买 nike

我是 Objective-C 的新手,不明白为什么我们需要使用 [super dealloc][super viewDidLoad][ super viewWillAppear:animated]。当我创建示例代码应用程序时,我看到类似这样的内容:

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

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

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

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

实际上 Xcode 4 总是在每个自动生成的末尾添加 super 方法 方法。为什么?

或者当我使用dealloc方法时。为什么我需要在最后添加[super dealloc]?

- (void)dealloc
{
[nameField release];
[numberField release];
[sliderLabel release];
[super dealloc];
}

附言现在在学习《iPhone 4开发入门》。并且没有找到关于此方法的任何引用:(

最佳答案

重点是,您通过继承子类来创建它们,在您的情况下,这似乎是一个自定义 ViewController,例如MyViewController 继承了 UIViewController 的数据和方法。继承意味着,你的类将拥有父类拥有的所有方法,即使你没有指定它们。例如:

@interface Foo : NSObject
- (void) doSomething;
@end

@interface Bar : Foo
@end

那么下面是有效的

Bar *myBar = [[Bar alloc] init];
[myBar doSomething];

即使您没有声明该方法,它也会在父类(super class)中找到,因此会调用父类(super class)方法。

现在假设您有以下内容:

@interface Bar : Foo
-(void) doSomething;
@end

两者的实现是

@implementation Foo
- (void) doSomething
{
NSLog(@"This is a super important method that HAS TO BE CALLED IN ANY CASE");
}
@end

@implementation Bar
-(void) doSomething
{
NSLog(@"Well this is important, but not as important as Foos implementation");
}
@end

如果没有 [super doSomething], super 重要的方法将永远不会被调用,因为您已经在您的自定义实现中覆盖它。所以当你做一个

Bar *myBar = [[Bar alloc] init];
[myBar doSomething];

Foo 的 doSomething 中包含的非常重要的代码不会被编译器看到,因为您自己在类中提供该方法,因此只会调用 Bar 的版本。

因此,无论何时重写方法,如果必须调用,则必须确保调用基类版本,这对于 dealloc 方法尤为重要,因为这将释放任何内存基类可能在初始化期间已获取。

关于objective-c - 为什么我需要在 iOs 中使用 [super %methodname%]?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9234024/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com