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

前端之家收集整理的这篇文章主要介绍了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.'
原文链接:https://www.f2er.com/iOS/329878.html

猜你在找的iOS相关文章