gpt4 book ai didi

ios - initWithCoder 方法在被调用时不断导致崩溃

转载 作者:行者123 更新时间:2023-11-29 11:17:21 24 4
gpt4 key购买 nike

在我的项目中,我导入了一些第三方框架,例如 google-maps。 EveryThing 在编译时工作正常,但在运行时,应用程序崩溃,我可以跟踪可疑方法:

//Invoked when the class is instantiated in XIB
-(id)initWithCoder:(NSCoder*)aDecoder
{
self = [super initWithCoder:aDecoder];
if(self)
{
[self customInitialization];
}
return self;
}

这是我得到的崩溃堆栈:

TestMapDirections[1343:11603] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSURL initFileURLWithPath:]: nil string parameter'
*** First throw call stack:
(0x13ea052 0x2035d0a 0x1392a78 0x13929e9 0xae854b 0xae84d5 0x23e3f 0x23d17 0x223b0 0x2230b 0x29e5 0x2ae6 0x3d3335 0x4d1fa2 0x4d16b7 0x3d2ead 0x4d1fa2 0x4d19af 0x4d16b7 0x3d2305 0x5d884f 0x5d8dd7 0x13ebec9 0x1b75c2 0x1b755a 0x25cb76 0x25d03f 0x25c2fe 0x1dca30 0x1dcc56 0x1c3384 0x1b6aa9 0x1601fa9 0x13be1c5 0x1323022 0x132190a 0x1320db4 0x1320ccb 0x1600879 0x160093e 0x1b4a9b 0x2478 0x23d5)
terminate called throwing an exceptionsharedlibrary apply-load-rules all
Current language: auto; currently objective-c

您可以下载my application并在你的东西上试一试,也许你能帮我更多地找出问题所在,提前谢谢。

编辑:@JSON coco:这是customInitialization 方法的代码:

-(void)customInitialization
{
// do the initialization of class variables here..

mDirections = [UICGDirections sharedDirections];
mDirections.delegate = self;
}

最佳答案

所以,我查看了您的代码。实际上崩溃的是 Google Map API。它期望找到一些名为 api.html 的文件。我不熟悉你正在使用的这个框架,所以我不能告诉你那个 html 文件的用途或从哪里得到它。但是,您需要找到它并将其添加到您的项目文件中,并确保它进入您的Copy Resources 构建阶段。为此,只需查看编辑器右侧的 File Utility Inspector(如果未打开,可以按 CMD+ALT+1 打开)。将 api.html 文件添加到您的项目后,选择它并检查以确保它已在文件检查器中针对您的目标进行检查。

这将导致崩溃停止。如果实际上不需要该文件,您可以更改文件 UICGoogleMapsAPI.m 的第 39 行。这是崩溃的行,因为它无法归档 api.html 文件。

关于ios - initWithCoder 方法在被调用时不断导致崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8837999/

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