保留对象的 EXEC_BAD_ACESS

发布于 2024-12-12 02:23:45 字数 407 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若言繁花未落 2024-12-19 02:23:45

我认为你的财产应该有 iboutlet 。

@property(nonatomic,retain) IBOutlet UITextField * usernameField;

这能解决问题吗?

I think your property should have iboutlet on it to.

@property(nonatomic,retain) IBOutlet UITextField * usernameField;

does that solve the problem?

迟到的我 2024-12-19 02:23:45

我认为你应该实现 UITextFieldDelegate 协议,这样您可以在用户“结束编辑”时管理事件通过委托的方法。如果我理解正确的话,您想要做的是“辞职第一响应者”,所以我建议您执行以下操作:

- (BOOL)textFieldShouldReturn:(UITextField *)textField{ 
    [textField resignFirstResponder]; 
    return NO;
}

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:

- (BOOL)textFieldShouldReturn:(UITextField *)textField{ 
    [textField resignFirstResponder]; 
    return NO;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文