使用 UIImage 作为分组 TableViewCell 中的标签
我是一个相对较新的人,我有这个问题,我想知道如何在 Xcode(没有 IB)中将 UIImage 作为图标(用作标签)编码到 TableView 单元格。它们必须能够分配给动态表视图中包含的特定数据。打个比方:
[狗的图像]分配给金毛猎犬, [猫的形象]分配给暹罗猫, [狗的图像] 分配给达尔马提亚犬等
提前致谢!
I am relatively new and I have this question where I would like to know to code in Xcode (without IB) a UIImage as icons (to function as tags) to a TableView cell. They would have to be able to be assigned to a particular data contained in a dynamic tableview. An analogy would be say:
[Image of a dog] assigned to a Golden Retriever,
[Image of a cat] assigned to a Siamese,
[Image of a dog] assigned to a Dalmatian, etc
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 UIImage 作为标签是不可能的,因为 tag 是一个整数,可用于标识应用程序中的视图对象。由于 tag 是从 UIView 继承的属性,因此不能将其与 UIImage 本身一起使用,但你可以将它与 UIImageView 一起使用,
在 imageView 本身上设置标签:
Using UIImage as a tag is not possible because tag is an integer that you can use to identify view objects in your application .Since tag is an inherited property from UIView, you cannot use it with UIImage itself, but you can use it with UIImageView,
Set the tag on the imageView itself: