如何将代码中的 IBOutlet 连接到界面生成器中的两个不同对象

发布于 2024-09-17 06:28:11 字数 147 浏览 7 评论 0原文

我正在使用 iPhone SDK 4.0,我想将 IBOutlet UIImageView *block; 连接到界面生成器视图上的多个图像。但是,每当我尝试链接第二个图像时,第一个图像就会断开连接。 如何将两个图像连接到同一个 IBOutlet 代码?

I'm using the iPhone SDK 4.0 and I want to connect IBOutlet UIImageView *block; to more than one image on the view in interface builder. However, whenever I try and link the second image, the first image becomes disconnected.
How can I connect two images to the same IBOutlet code?

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

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

发布评论

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

评论(2

回忆躺在深渊里 2024-09-24 06:28:12

将它们放在两个不同的 xib 文件中,然后可以使用代码 [[NSBundle mainBundle] loadNibNamed:@"tests" Owner:self options:nil]; 使用单个 iboutlet 访问它们;

put them in two different xib file then can access them using a single iboutlet using the code [[NSBundle mainBundle] loadNibNamed:@"tests" owner:self options:nil];

猥︴琐丶欲为 2024-09-24 06:28:11

IBOutlet 变量与界面构建器中的对象具有一对一关系。因此你必须有另一个变量。

IBOutlet variables have a one-to-one relationship with objects in interface builder. Therefore you will have to have another variable.

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