我最近在Xcode上写了一个简单的应用程序,目的是学习如何为iPhone编写程序。我编写的程序使用xib文件。由于我正在使用Xcode5,我删除了故事板并添加了xib文件。然后,在项目的Info属性中,我将变量“Main storyboard file base name”更改为“Main nib file base name”,并将值设置为我的xib文件的名称。稍后,在文件的所有者中,我将自定义类设置为QuizViewController(我的xib的控制器)并进行了所有必要的连接(IBAction和IBOutlet)。
我没有任何编译错误但是当我执行项目时出现以下错误
2014-01-20 12:37:17.872测验[1616:70b] ***由于未捕获的异常'NSUnknownKeyException'终止应用程序,原因:'[setValue:forUndefinedKey:]:此类不是键值编码 - 符合关键的campoPreguntas。'
我不明白这个错误意味着什么。
我的QuizViewController.h的代码就是这个
@interface QuizViewController : UIViewController
{
int indicePreguntaActual;
//objetos del modelo
NSMutableArray *preguntas;
NSMutableArray *respuestas;
//objetos de la vista
IBOutlet UILabel *campoPreguntas;
IBOutlet UILabel *campoRespuestas;
}
- (IBAction)mostrarPregunta:(id)sender;
- (IBAction)mostrarRespuesta:(id)sender;
@end
我的QuizViewController.m的代码是
#import "QuizViewController.h"
@interface QuizViewController ()
@end
@implementation QuizViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
//llamamos al init implementado en la superclase
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
//creamos dos arreglos y hacemos que los punteros apunten a ellos
preguntas = [[NSMutableArray alloc]init];
respuestas = [[NSMutableArray alloc]init];
//añadimos las preguntas y respuesas a los arreglos
[preguntas addObject:@"Cuanto es 7 + 7"];
[respuestas addObject:@"14"];
[preguntas addObject:@"Cuanto es 5 + 5"];
[respuestas addObject:@"10"];
[preguntas addObject:@"Cuanto es 2 + 2"];
[respuestas addObject:@"4"];
}
//retornamos la direccion del nuevo objeto
return self;
}
-(IBAction)mostrarPregunta:(id)sender
{
//incrementamos el indice de las preguntas
indicePreguntaActual++;
//verificamos que el indice no sea mayor al tamaño del arreglo y si es igual
//al valor maximo hacemos que el indice valga 0 para iniciar nuevamente
if (indicePreguntaActual == [preguntas count]) {
indicePreguntaActual = 0;
}
//obtenemos la pregunta en el indice
NSString *pregunta = [preguntas objectAtIndex:indicePreguntaActual];
//mostramos la pregunta en la interfaz
[campoPreguntas setText:pregunta];
//limpiamos el campo respuesta
[campoRespuestas setText:@"???"];
//escribimos la pregunta que se muestra en el log
NSLog(@"mostrando la pregunta: %@",pregunta);
}
-(IBAction)mostrarRespuesta:(id)sender
{
//obtenemos la respuesta
NSString *respuesta = [respuestas objectAtIndex:indicePreguntaActual];
//mostramos la respuesta
[campoRespuestas setText:respuesta];
}
@end
我的连接看起来像这样
感谢您的时间和帮助。
答案 0 :(得分:0)
通常是因为您在IB中已经连接了一些在代码中删除的内容