使用 UIImage 作为分组 TableViewCell 中的标签

发布于 2024-10-14 06:21:23 字数 182 浏览 2 评论 0原文

我是一个相对较新的人,我有这个问题,我想知道如何在 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 技术交流群。

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

发布评论

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

评论(1

夏天碎花小短裙 2024-10-21 06:21:23

使用 UIImage 作为标签是不可能的,因为 tag 是一个整数,可用于标识应用程序中的视图对象。由于 tag 是从 UIView 继承的属性,因此不能将其与 UIImage 本身一起使用,但你可以将它与 UIImageView 一起使用,
在 imageView 本身上设置标签:

#define IMAGE_TAG_GREEN 50
#define IMAGE_TAG_RED   51

-(UITableViewCell*) tableView:(UITableView*) tableView cellForRowAtIndexPath:(NSIndexPath *) indexPath {
  static NSString *CELL_ID = @"some_cell";
  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CELL_ID];
  if(cell == nil) {
     //do setup here...
     cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CELL_ID] autorelease];
     cell.imageView.tag = //some logic here...
  }
 if(cell.imageView.tag == IMAGE_TAG_GREEN) {
//...
  } else {
//...
  }
  return cell;

}

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:

#define IMAGE_TAG_GREEN 50
#define IMAGE_TAG_RED   51

-(UITableViewCell*) tableView:(UITableView*) tableView cellForRowAtIndexPath:(NSIndexPath *) indexPath {
  static NSString *CELL_ID = @"some_cell";
  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CELL_ID];
  if(cell == nil) {
     //do setup here...
     cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CELL_ID] autorelease];
     cell.imageView.tag = //some logic here...
  }
 if(cell.imageView.tag == IMAGE_TAG_GREEN) {
//...
  } else {
//...
  }
  return cell;

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