在主界面添加新的 xib 时出错

error when adding a new xib in main interface

在此处下载this parser启动,它可以工作,但是当我想更改主界面时(默认设置是MainWindow.xib,我想放我的xib),显示以下错误。我希望我是一个结构 MyNewXib.xib - MainWindow.xib - RootViewController.xib,但是当我在 MainInterface MyNewXib.xib 中添加时出现此错误,我该如何解决它。

    2015-03-23 11:27:02.686 TetraVer 1.1[411:5899] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIApplication 0x7fa352c30c10> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key view.'
*** First throw call stack:
(
    0   CoreFoundation                      0x0000000110e1ba75 __exceptionPreprocess + 165
    1   libobjc.A.dylib                     0x000000010fad9bb7 objc_exception_throw + 45
    2   CoreFoundation                      0x0000000110e1b6b9 -[NSException raise] + 9
    3   Foundation                          0x000000010f42fd43 -[NSObject(NSKeyValueCoding) setValue:forKey:] + 259
    4   CoreFoundation                      0x0000000110d655e0 -[NSArray makeObjectsPerformSelector:] + 224
    5   UIKit                               0x000000010e3f54ed -[UINib instantiateWithOwner:options:] + 1506
    6   UIKit                               0x000000010e3f6f92 -[NSBundle(UINSBundleAdditions) loadNibNamed:owner:options:] + 160
    7   UIKit                               0x000000010e12dc71 -[UIApplication _loadMainNibFileNamed:bundle:] + 46
    8   UIKit                               0x000000010e12cd2b -[UIApplication _runWithMainScene:transitionContext:completion:] + 1074
    9   UIKit                               0x000000010e12bd35 -[UIApplication workspaceDidEndTransaction:] + 179
    10  FrontBoardServices                  0x000000010fe84243 __31-[FBSSerialQueue performAsync:]_block_invoke + 16
    11  CoreFoundation                      0x0000000110d50c7c __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
    12  CoreFoundation                      0x0000000110d469c5 __CFRunLoopDoBlocks + 341
    13  CoreFoundation                      0x0000000110d46785 __CFRunLoopRun + 2389
    14  CoreFoundation                      0x0000000110d45bc6 CFRunLoopRunSpecific + 470
    15  UIKit                               0x000000010e12b7a2 -[UIApplication _run] + 413
    16  UIKit                               0x000000010e12e580 UIApplicationMain + 1282
    17  TetraVer 1.1                        0x000000010e06c6f4 main + 68
    18  libdyld.dylib                       0x0000000114c7d145 start + 1
    19  ???                                 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException

确保元素与接口和定义正确链接(检查 xib 元素的出口)。当您在 xib 定义 (@属性) 中删除了一个或多个元素时,通常会出现此错误。