gpt4 book ai didi

ios - 将委托(delegate)设置为 MKMapView

转载 作者:行者123 更新时间:2023-11-28 18:36:39 25 4
gpt4 key购买 nike

我是 iOS 编程新手。我用 MKMapView 元素创建了 ViewController,我想设置委托(delegate) [mapView setDelegate:self]

首先,我在方法 initWithNibName:bundle 中完成了它:like:

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
[[self map] setDelegate:self]];
UITabBarItem *item = [[UITabBarItem alloc] init];
[item setTitle:@"Map"];
[self setTabBarItem:item];
}
return self;
}

在这种情况下,MKMapView 没有向我发送任何消息,但是当我将设置委托(delegate)消息放置到 viewDidLoad 方法时,它工作正常。

有人能解释一下为什么当 setting delegate messageinitWithNibName:bundle 中时它不起作用吗?

最佳答案

View 不会在 initWithNibName 中加载,它只是初始化您的 viewcontroller 类并加载包含您的 View 详细信息的 xib 文件。

当 viewcontroller 调用 viewDidLoad 时,您将分配并初始化所有 View 对象。

在你的例子中,当你在 initWithNibnamesetDelegate 时,你是在一个 nil 值上调用它,所以没有设置,但在 viewDidLoad mapView 已分配并初始化,因此可以正常工作。

如需更深入的了解,请参阅:

http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/ViewLoadingandUnloading/ViewLoadingandUnloading.html

这里有漂亮的解释:What is the process of a UIViewController birth (which method follows which)?

Looking to understand the iOS UIViewController lifecycle

http://thejoeconwayblog.wordpress.com/2012/10/04/view-controller-lifecycle-in-ios-6/

View Life-cycle

关于ios - 将委托(delegate)设置为 MKMapView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17593865/

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