setValue:forUndefinedKey:此类与键的键值编码不兼容

我正在创建一个登录以查看支持票。第一个视图是票证视图,如果您未登录,则将您带到登录屏幕。但是我收到这个:


支持[3209:18e03] *由于未捕获的异常'NSUnknownKeyException'而终止应用程序,原因:'[setValue:forUndefinedKey:]:此类不适用于键LoginScreen的键值编码。*


第一掷调用堆栈:(0x1f17012 0x1634e7e 0x1f9ffb1 0x10e1711 0x1062ec8 0x10629b7 0x108d428 0x7990cc 0x1648663 0x1f1245a 0x797bcf 0x65ce37 0x65d418 0x65d648 0x65d882 0x669235 0x8683d2 0x6664f3 0x666777 0x6667b7 0x9d1fe2 0x9c3ad9 0x65e422 0x2b15 0x65f753 0x65fb2f 0x661286 0x65fe3f 0x592910 0x592895 0x5926e5 0x1edfafe 0x1edfa3d 0x1ebd7c2 0x1ebcf44 0x1ebce1b 0x22aa7e3 0x22aa668 0x57c65c 0x1f0d 0x1e35)的libc + + abi.dylib:终止调用引发异常


这是我的LoginScreen.m代码


#import "UIAlertView+error.h"

#import "LoginScreen.h"

#import "API.h"

#include <CommonCrypto/CommonDigest.h>


#define sayWhat @"REMOVEDFORSECURITY"



@implementation LoginScreen


-(void)viewDidLoad {

    NSLog(@"Found me!");

    [super viewDidLoad];



    //focus on the username field /show keyboard

    [fldUsername becomeFirstResponder];

}



- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

{

        // Return YES for supported orientations

        return (interfaceOrientation == UIInterfaceOrientationPortrait);

    }


    -(IBA


ction)btnLoginRegisterTapped:(UIButton*)sender {

    if (fldUsername.text.length < 4 || fldPassword.text.length < 4){

        [UIAlertView error:@"Enter username and password over 4 chars each."];

        return;

    }


    //very basic encryption called "salting"

    NSString* saltedPassword = [NSString stringWithFormat:@"%@%@", fldPassword.text, sayWhat];


    //prep the hashed storage

    NSString* hashedPassword = nil;

    unsigned char hashedPasswordData[CC_SHA1_DIGEST_LENGTH];

慕桂英546537
浏览 1500回答 4
4回答

白猪掌柜的

此类莫名其妙的异常通常是xib文件不干净的结果。xib在xcode中打开,选择“文件所有者”,然后单击“连接检查器”(右上角箭头),一次查看所有出口。寻找!s表示缺少电源插座。

catspeake

在Interface Builder中检查您的连接。您可能是指不存在的IBOutlet或IBAction。

MMMHUHU

多谢你们。我通过您的帮助解决了这个问题。因此,希望此屏幕截图对遇到相同问题的人有所帮助。
打开App,查看更多内容
随时随地看视频慕课网APP