使用NSException类型的未捕获异常终止

使用NSException类型的未捕获异常终止

本文介绍了Swift:使用NSException类型的未捕获异常终止的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发一个简单的应用程序,当我点击注册用户时,应用程序将被终止。请帮我搞清楚。

I'm developing a simple app and when I click to sign up the user, the app gets terminated. Please help me figure this out.

它说:

这是错误更详细:


推荐答案

你似乎有 CreditCardT的铜棒@IBOutlet extField ,检查你的故事板,一旦重新连接插座,它就可以再次工作

It seems that you have a bronken @IBOutlet for CreditCardTextField, check in your storyboard, as soon as you reconnect the outlet it all should work again

setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key CreditCardTextField.'

这是你检查你的网点的方式:

This is how you check your outlets:

选择字段,右边的插座应正确连接,代码中的圆圈内部应有一个圆点,如果没有连接断开,控制拖动以修复它。

Select the field, the outlets in the right should be connect correctly and the circles in the code should have a dot inside, if not the connection is broken, control drag to fix it.

这篇关于Swift:使用NSException类型的未捕获异常终止的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 17:53