抱歉问,我已经尝试了我在网上阅读的所有内容,但是当我尝试运行应用程序时,我不断收到 SIGABRT 错误。
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
错误代码出现在返回 UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 线。
调试器只是声明
2013-10-18 10:29:45.270 Black History Month[733:c07] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIApplication 0x903f770> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key view.'
*** First throw call stack:
(0x14a3052 0xea3d0a 0x14a2f11 0x9b3032 0x924f7b 0x924eeb 0x93fd60 0x23291a 0x14a4e1a 0x140e821 0x23146e 0x233010 0x1314a 0x13461 0x127c0 0x21743 0x221f8 0x15aa9 0x138dfa9 0x14771c5 0x13dc022 0x13da90a 0x13d9db4 0x13d9ccb 0x122a7 0x13a9b 0x2712 0x2685)
terminate called throwing an exception
我尝试过制作几个不同的应用程序,但总是出现这个错误,所以无法发布,我现在尝试了一个简单的 uiwebview 应用程序,同样的事情一直在发生。我尝试在许多不同的部署目标上运行,但没有成功。
我曾尝试重置模拟器,多次重新启动模拟器的 xcode 和计算机,关闭 xib 文件的自动布局。没运气。有任何想法吗?
提前致谢