设置UITextfield委托时,iOS应用程序崩溃

时间:2014-05-05 09:47:24

标签: ios uitextfield exc-bad-access

我不知道为什么iPhone应用程序崩溃,它只给出了lldb错误。我也尝试添加异常断点。

.h文件:

 IBOutlet UITextField *etCountry;

.m文件:

etCountry.delegate=self;///

这是我遇到崩溃的路线。请给我解决方案

enter image description here

3 个答案:

答案 0 :(得分:1)

确保您的文字字段有如下图所示的连接

enter image description here

enter image description here

答案 1 :(得分:0)

这就是

 self.etCountry.delegate=self;

并添加

 @interface YourViewController ()<UITextFieldDelegate>
 @end

答案 2 :(得分:0)

您可以检查其他主题及其堆栈。我的猜测是文本字段的一切都很好。看起来似乎在后台也有网络呼叫,也许回调块的格式不正确。这导致了类似的“隐藏”崩溃。

enter image description here