UIView 可以是 UITextField 委托吗

发布于 2024-10-24 09:29:01 字数 363 浏览 11 评论 0原文

当我尝试将 UITextField 的委托设置为 UIView 类时,出现 sigabrt 错误。我使用了 UITextFieldDelgate 协议。这是我的代码

    nameField = [[UILabel alloc] initWithFrame:CGRectMake(130, 40, 200, 30)];
    [nameField setDelegate:self];
    nameField.placeholder = @"<Game Name>";
    nameField.textAlignment = UITextAlignmentCenter;
    [self addSubview:nameField];

I am getting a sigabrt error when I try to set the delegate of my UITextField to my UIView class. I have used the UITextFieldDelgate Protocal. here is my code

    nameField = [[UILabel alloc] initWithFrame:CGRectMake(130, 40, 200, 30)];
    [nameField setDelegate:self];
    nameField.placeholder = @"<Game Name>";
    nameField.textAlignment = UITextAlignmentCenter;
    [self addSubview:nameField];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清醇 2024-10-31 09:29:01

您将在构造函数中使用 UITextField,而不是 UILabel。将第一个字符串替换为以下内容:

nameField = [[UITextField alloc] initWithFrame:CGRectMake(130, 40, 200, 30)];

You are about to use UITextField in constructor, not UILabel. Replace your first string with the following:

nameField = [[UITextField alloc] initWithFrame:CGRectMake(130, 40, 200, 30)];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文