保留对象的 EXEC_BAD_ACESS
我正在使用 xCode 4.3,这很奇怪。我已经正确初始化了我的 UITextfield,但是当我在 IBAction 中调用它时,它给了我 EXEC_BAD_ACCESS>
in .h File
interface .........
{
IBOutlet UITextField * usernameField;
}
@property(nonatomic,retain) UITextField * usernameField;
in .m File
@implementaion ............
@synthesize usernameField;
- (IBAction) editingEnded:(id)sender
{
[usernameField resignFirstResponder];
}
I am using xCode 4.3 and this is weird. I have properly initialized my UITextfield but when i call it in IBAction it gives me EXEC_BAD_ACCESS>
in .h File
interface .........
{
IBOutlet UITextField * usernameField;
}
@property(nonatomic,retain) UITextField * usernameField;
in .m File
@implementaion ............
@synthesize usernameField;
- (IBAction) editingEnded:(id)sender
{
[usernameField resignFirstResponder];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你的财产应该有 iboutlet 。
这能解决问题吗?
I think your property should have iboutlet on it to.
does that solve the problem?
我认为你应该实现 UITextFieldDelegate 协议,这样您可以在用户“结束编辑”时管理事件通过委托的方法。如果我理解正确的话,您想要做的是“辞职第一响应者”,所以我建议您执行以下操作:
I Think you should implement the UITextFieldDelegate Protocol, this way you can manage the event when the user "Ends Editing" trough the delegate's methods. If I understand correctly, what you want to do is to "Resign First Responder" so I suggest you to do the following: