ios – 这个类不是键XXXXXX的键值编码

当我尝试构建和运行我的应用程序,它崩溃,我得到了在日志中:
reason: '[<LoadingViewController 0x6b2c5a0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key aproposViewController.'

奇怪的是aproposViewController不在LoadViewController中使用,它只是我应用程序中的另一个视图控制器.请帮忙,thx提前:)

编辑

appdelegate.h:

@class LoadingViewController;

@interface TopStationAppDelegate : NSObject <UIApplicationDelegate,CLLocationManagerDelegate> {
    UIWindow *window;
    LoadingViewController *loadingView;
}
@property (nonatomic,retain) IBOutlet UIWindow *window;
@property (nonatomic,retain) IBOutlet LoadingViewController *loadingView;
@end

appdelegate.m:

#import "LoadingViewController.h"
@implementation TopStationAppDelegate
@synthesize window;
@synthesize loadingView;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    
  [window addSubview:loadingView.view];
    [window makeKeyAndVisible];
    return YES;
}
- (void)dealloc {
    [loadingView release];
    [window release];
    [super dealloc];
}
@end

没有aproposViwController的声明,即使在IB的主视图!
编辑2
这里有两个屏幕截图我的主要和在viewView中的界面构建器:

解决方法

不能确定这是否是您的情况发生的情况,但如果您的笔尖中设置了一个连接来将对象分配给另一个对象的属性,则通常会看到此消息,但是该属性在目标对象.

因此,您可能会在一个点上在LoadViewController上创建一个名为aproposViewController的IBOutlet,将另一个视图控制器连接到该nib中,然后删除IBOutlet,但被忽略以删除该nib中的连接.

所以当nib被加载时,它试图设置属性,只发现它不存在,因此:

reason: '[<LoadingViewController 0x6b2c5a0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key aproposViewController.'

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...