1个插座连接2个UILabel?
是否可以将文件所有者的 1 个出口连接到同一视图中的 2 个 UILabels?
我尝试这样做,但每次我将插座连接到另一个标签时,它都会自动从插座与旧标签断开连接?
Is it possible to connect 1 outlet from file's owner to 2 UILabels
from the same view?
I try to do that, but every time I connect the outlet to the other label, it automatic disconnect from outlet to the old label?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,这是不可能的。当您添加这样的出口时,您会说:“我希望将 UILabel 类的对象的引用保存在该变量中。”因此,您可以在一个变量中保存两个不同的值。
No, it's not possible. When you add such outlet you say: "I want reference to the object of class UILabel be saved in that variable." So you can save two different values in one variable.
您可以使用
IBOutletCollection
而不是IBOutlet
。否则,你所要求的就没有任何意义。你想达到什么目的?You could use an
IBOutletCollection
instead of anIBOutlet
. Otherwise, what you are asking for does not make any sense. What are you trying to acheive?