IBOutlet 未显示在文件所有者/IB 中

发布于 2024-12-06 19:26:48 字数 391 浏览 0 评论 0原文

在我的 .h 文件中,我有这个:

@interface {
UILabel *questionLabel_;
}

@property (nonatomic, retain) IBOutlet UILabel *questionLabel;

在我的 .mm 文件中,我有这个:

@synthesize questionLabel = questionLabel_;

当我转到 xib 文件时,我在文件所有者中没有看到 QuestionLabel 的证据。我也无法通过按住 Ctrl 键拖动到文件所有者或第一响应者来连接 UILabel。

它虽然与我创建的两个 UIButton 一起使用。

有想法吗?

In my .h file I have this:

@interface {
UILabel *questionLabel_;
}

@property (nonatomic, retain) IBOutlet UILabel *questionLabel;

In my .mm file I have this:

@synthesize questionLabel = questionLabel_;

When I go to the xib file I see no evidence of questionLabel in the File Owner. Nor can I connect a UILabel by ctrl dragging to File Owner or First Responder.

It is though working with two UIButtons I have created.

Ideas?

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

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

发布评论

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

评论(1

雨夜星沙 2024-12-13 19:26:48

您应该为您的文件所有者设置适当的类。

打开实用程序->身份检查员->自定义类 ->类->选择您的班级

之后您就可以设置插座了。

You should set appropriate class of your File's Owner.

Open Utilities -> Identity Inspector -> Custom Class -> Class -> Select your class.

After that you will be able to set outlets.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文