为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

慕桂英546537 2019-10-08 15:26:59
我正在创建一个登录以查看支持票。第一个视图是票证视图,如果您未登录,则将您带到登录屏幕。但是我收到这个:支持[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);    }    -(IBAction)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];
查看完整描述

4 回答

?
白猪掌柜的

TA贡献1893条经验 获得超10个赞

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


查看完整回答
反对 回复 2019-10-08
?
catspeake

TA贡献1111条经验 获得超0个赞

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


查看完整回答
反对 回复 2019-10-08
?
MMMHUHU

TA贡献1834条经验 获得超8个赞

//img1.sycdn.imooc.com//5d9c3a730001382602360149.jpg

多谢你们。我通过您的帮助解决了这个问题。因此,希望此屏幕截图对遇到相同问题的人有所帮助。


查看完整回答
反对 回复 2019-10-08
  • 4 回答
  • 0 关注
  • 1499 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信