gpt4 book ai didi

objective-c - main 方法中抛出的 Objective C 异常

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:34:04 25 4
gpt4 key购买 nike

我的应用程序在执行我的任何代码之前继续崩溃后,我设置了一个异常断点。我不知道出了什么问题。我打印了堆栈跟踪,但堆栈跟踪中唯一可破译的部分是问题出在以下行中: return UIApplicationMain(argc, argv, nil, NSStringFromClass([TACGridAppDelegate class]));

Here is the stack trace:


`#0 0x014b7cb4 in objc_exception_throw ()`
`#1 0x013209c1 in -[NSException raise] ()`
`#2 0x00a99143 in -[NSObject(NSKeyValueCoding) setValue:forUndefinedKey:] ()`
`#3 0x00a0ad5f in _NSSetUsingKeyValueSetter ()`
`#4 0x00a0accf in -[NSObject(NSKeyValueCoding) setValue:forKey:] ()`
`#5 0x00a25d78 in -[NSObject(NSKeyValueCoding) setValue:forKeyPath:] ()`
`#6 0x0035e7af in -[UIRuntimeOutletConnection connect] ()`
`#7 0x013228ba in -[NSObject performSelector:] ()`
`#8 0x0128b251 in -[NSArray makeObjectsPerformSelector:] ()`
`#9 0x0035d303 in -[UINib instantiateWithOwner:options:] ()`
`#10 0x0035eeab in -[NSBundle(UINSBundleAdditions) loadNibNamed:owner:options:] ()`
`#11 0x00142f2f in -[UIApplication _loadMainNibFileNamed:bundle:] ()`
`#12 0x0014322c in -[UIApplication _loadMainInterfaceFile] ()`
`#13 0x0014281a in -[UIApplication _runWithURL:payload:launchOrientation:statusBarStyle:statusBarHidden:] ()`
`#14 0x001514c6 in -[UIApplication handleEvent:withNewEvent:] ()`
`#15 0x00151f34 in -[UIApplication sendEvent:] ()`
`#16 0x0014590c in _UIApplicationHandleEvent ()`
`#17 0x01b4a876 in PurpleEventCallback ()`
`#18 0x012f3ff5 in __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ ()`
`#19 0x01258902 in __CFRunLoopDoSource1 ()`
`#20 0x012571ea in __CFRunLoopRun ()`
`#21 0x01256694 in CFRunLoopRunSpecific ()`
`#22 0x012565ab in CFRunLoopRunInMode ()`
`#23 0x00142326 in -[UIApplication _run] ()`
`#24 0x00143851 in UIApplicationMain ()`
`#25 0x0000215a in main (argc=1, argv=0xbffff610) at /Users/MasonSilber/Desktop/Programming Stuff/iOS Programming/XCode 4/TACGrid/TACGrid/main.m:16`

感谢任何帮助。谢谢!

编辑:好的,我已经缩小了问题范围。每当我将 TACGridViewController 设置为 iPad 部署信息中的主界面时,它就会抛出此异常。这有帮助吗?

最佳答案

阅读回溯,特别是:

#8  0x0128b251 in -[NSArray makeObjectsPerformSelector:] ()
#9 0x0035d303 in -[UINib instantiateWithOwner:options:] ()
#10 0x0035eeab in -[NSBundle(UINSBundleAdditions) loadNibNamed:owner:options:] ()

异常发生在 XIB 文件的加载过程中,大概是应用程序启动时加载的主 XIB 文件。

即你的 xib 文件有误。由于抛出了异常,因此应该有一条日志消息包含有关异常的详细信息(如果您在调试器中“继续”,它可能会喷出它)。

很可能,您更改了源代码中导出的名称,但没有更新 XIB 文件。不过,也可能是其他原因,如果没有异常细节,就不可能再多说了。


EDIT: Okay, I've narrowed down the problem. It throws this exception whenever I set TACGridViewController as the Main Interface in the iPad deployment info. Does that help?

听起来像是不正确的 XIB。

  1. 检查您在源文件和 xib 文件中拼写的类名是否正确。

  2. 您的 IB 网点是否有自定义二传手?该回溯表明不是,而只是检查。

  3. 确保 xib 文件和源代码之间的所有导出拼写正确且相同。

关于objective-c - main 方法中抛出的 Objective C 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6927792/

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