Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Interface Builder 中,很容易将 NIB 中的对象连接到 File's Owner 中的插座 我有一个 UIImage 数组 我需要以编程方式为数组的每个图像创建一个插座?
谢谢
您只需要IBOutlet您在 IB、Interface Builder 中创建的那些控件的条目。如果您以编程方式创建控件,这听起来像是您想做的那样,您可以继续以编程方式创建您的UIImageView对象,但您不会没有相应的IBOutlet语句。
IBOutlet
UIImageView
谷歌“UIImageView create programmatically”获取一些示例。