2012-10-03 83 views
5

我有我的应用程序的RootViewController问题。当我运行应用程序时,我得到这个错误。这意味着什么?这个类不是关键值编码兼容的关键imageView

NSUnknownKeyException', reason: '[<UIApplication 0x8634010> setValue:forUndefinedKey:]:  this class is not key value coding-compliant for the key bigImageView.' 
First throw call stack: 
(0x1992012 0x1357e7e 0x1a1afb1 0xe04711 0xd85ec8 0xd859b7 0xdb0428 0x4bc0cc 
0x136b663 0x198d45a 0x4babcf 0x4bc98d 0x29eceb 0x29f002 0x29ded6 0x2af315 0x2b024b 
0x2a1cf8 0x1dbedf9 0x1dbead0 0x1907bf5 0x1907962 0x1938bb6 0x1937f44 0x1937e1b 0x29d7da 0x29f65c 0x2c6d 0x2b95) 
libc++abi.dylib: terminate called throwing an exception 

我在RootViewController.h

#import <UIKit/UIKit.h> 


    @interface RootViewController : UIViewController <UIGestureRecognizerDelegate>{ 

    } 

@property (nonatomic, copy)IBOutlet UIImageView * bigImageView; 
@property (nonatomic, assign)BOOL fromRootViewController; 


- (void)handleTap:(UITapGestureRecognizer *)recognizer; 



@end 

我的代码代码RootViewController.m

#import "RootViewController.h" 
    #import "MenuViewController.h" 

    @interface RootViewController() 

    @end 

    @implementation RootViewController 

    @synthesize bigImageView; 
    @synthesize fromRootViewController; 

    - (void)viewDidLoad 
    { 
     [super viewDidLoad]; 
     UIDeviceOrientation deviceOrientation = [[UIDevice currentDevice]orientation]; 

      if(deviceOrientation == UIInterfaceOrientationPortrait || deviceOrientation== UIInterfaceOrientationPortraitUpsideDown) { 
    self.bigImageView= [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"milanocina_V.png"]]; 

} 
else if (deviceOrientation== UIInterfaceOrientationLandscapeRight){ 
    self.bigImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"milanocina_O.png"]]; 

} 
else if (deviceOrientation==UIInterfaceOrientationLandscapeLeft){ 

    self.bigImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"milanocina_O.png"]]; 



} 

[self.view addSubview:self.bigImageView]; 

UITapGestureRecognizer * recognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)]; 
recognizer.delegate = self; 
[self.view addGestureRecognizer:recognizer]; 

} 

的RootViewController的最初名为ViewController中,我已经改了名字。可以与错误相关?我能做什么?

+1

你有没有注意到错误消息说你试图在'UIApplication'上设置该属性......世界上所有的'RootViewController'中的代码都没有什么区别。我敢打赌,你的XIB文件中有一个错误的链接。不好的链接将显示很少解释点。 – borrrden

+0

我如何找到错误的连接? –

+0

我不知道这是否会导致您的问题,但是您对bigImageView做了错误处理。您将其定义为IBOutlet,然后将其分配给在代码中创建的实例。如果你用IB连接到你在那里的ImageView,那么代码将覆盖它。它可能不应该是一个IBOutlet,因为根据方向的不同,你需要它是不同的东西。 – rdelmar

回答

3

以下是另一种可能性:您重命名了您的类,但忘记更改您的UIViewController初始化代码。对我来说,它是这样的:

NewViewController *vc; 
vc = [[NewViewController alloc] initWithNibName:@"OldViewController" bundle:nil]; 

一旦我更换了字符串@“OldViewController”与@“NewViewController”,问题就走开了。

14

在某些时候,您设置了一个@property。然后你从你的代码中删除它,但是没有在你的xib/storyboard中解开它。您需要在故事板中找到它,单击它,然后删除插座。

相关问题