摆脱SIGABRT错误

时间:2013-11-22 17:41:26

标签: ios objective-c xcode debugging sigabrt

我一直试图启动我的应用程序并且它一直“以NSException类型的未捕获异常终止”并将我从模拟器发送回此xcode屏幕: ![在此输入图像说明] [1]

我看到问题出现在第一个帖子中,但我不知道在我的代码或事件路径中它对应于哪个。

这是第一个包含错误的线程的其他部分: enter image description here

调试器说:

  

2013-11-21 18:59:23.330 Bluetooth_RSSI_test [24377:a0b] ***由于未捕获的异常'NSUnknownKeyException'而终止应用程序,原因:'[setValue:forUndefinedKey:]:此类不是键值编码 - 符合密钥set1m。'

这是我的代码,其中包括set1m(请注意,aValue是NSNumber类型的属性(非原子,强)并且已经合成):

in .h file
- (IBAction)set1m:(id)sender;

in .m file

- (IBAction)set1m:(id)sender
{
    aValue = RSSIvalue;
    self.RSSIat1m.text = [NSString stringWithFormat:@"%@", aValue];
}

1 个答案:

答案 0 :(得分:2)

检查连接到IBAction的插座。 PS:我不能评论这就是为什么我把它作为答案。