当前位置:  开发笔记 > IOS > 正文

UITableViewCell右边的图像?

如何解决《UITableViewCell右边的图像?》经验,为你挑选了4个好方法。

有没有办法将UITableViewCell.image设置为显示在单元格的右侧而不是左侧?或者我需要在单元格布局的右侧添加单独的UIImageView吗?



1> Alex Wayne..:

不可以.但您可以轻松地将图像视图作为附件视图添加到表格单元格以获得相同的效果.

UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"foo.png"]];
cell.accessoryView = imageView;
[imageView release];


很抱歉觉醒这个线程,但它没有在起跑线上工作,我不得不添加`[imageView sizeToFit];`在发布之前和设置accessoryview属性之后,希望这有帮助:)

2> TomSwift..:

对于简单的情况,您可以这样做:

cell.contentView.transform = CGAffineTransformMakeScale(-1,1);
cell.imageView.transform = CGAffineTransformMakeScale(-1,1);
cell.textLabel.transform = CGAffineTransformMakeScale(-1,1);
cell.textLabel.textAlignment = NSTextAlignmentRight; // optional

这将翻转(镜像)内容视图,将任何imageView放在右侧.请注意,您必须翻转imageView和任何文本标签,否则他们自己将被镜像!此解决方案保留右侧的附件视图.



3> Zorayr..:

以下是Swift中使用以下方法的示例accessoryView:

private let reuseIdentifier: String = "your-cell-reuse-id"

// MARK: UITableViewDataSource

func tableView(tableView:UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
  var cell : UITableViewCell? = tableView.dequeueReusableCellWithIdentifier(reuseIdentifier) as? UITableViewCell
  if (cell == nil) {
    cell = UITableViewCell(style:UITableViewCellStyle.Subtitle, reuseIdentifier:reuseIdentifier)
  }

  cell!.textLabel!.text = "Hello"
  cell!.detailTextLabel!.text = "World"
  cell!.accessoryView = UIImageView(image:UIImage(named:"YourImageName")!)
  return cell!
}



4> gerram..:

如果您不想制作自定义单元格并可以使用标准单元格,则至少需要两种方法:

    要使用accessoryView。

cell.accessoryView = UIImageView(image: UIImage(named: "imageName"))
cell.accessoryView.frame = CGRectMake(0, 0, 22, 22)

    如果您想要正确的图像+附件视图,则可以将UIImageView出口添加到ContentView(示例名称:rightImage),并将textLabel的背景颜色更改为Clear。

cell.rightImage.image = UIImage(named: "imageName")
cell.textLabel.backgroundColor = UIColor.clearColor()

推荐阅读
喜生-Da
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有