如何将代码中的 IBOutlet 连接到界面生成器中的两个不同对象
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将它们放在两个不同的 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];
IBOutlet 变量与界面构建器中的对象具有一对一关系。因此你必须有另一个变量。
IBOutlet variables have a one-to-one relationship with objects in interface builder. Therefore you will have to have another variable.