有没有办法将UITableViewCell.image设置为显示在单元格的右侧而不是左侧?或者我需要在单元格布局的右侧添加单独的UIImageView吗?
答案 0 :(得分:79)
没有。但您可以轻松地将图像视图作为附件视图添加到表格单元格中以获得相同的效果。
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"foo.png"]];
cell.accessoryView = imageView;
[imageView release];
答案 1 :(得分:10)
对于简单的情况,您可以这样做:
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和任何文本标签,否则他们自己将被镜像!此解决方案保留右侧的附件视图。
答案 2 :(得分:6)
以下是 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!
}
答案 3 :(得分:5)
如果您不想制作自定义单元格并使用标准单元格,则至少有两种方式:
cell.accessoryView = UIImageView(image: UIImage(named: "imageName"))
cell.accessoryView.frame = CGRectMake(0, 0, 22, 22)
cell.rightImage.image = UIImage(named: "imageName")
cell.textLabel.backgroundColor = UIColor.clearColor()
答案 4 :(得分:2)
子类UITableViewCell并覆盖 layoutSubviews ,然后只调整self.textLabel,self.detailTextLabel和self.imageView视图的帧。
这就是代码中的样子:
MYTableViewCell.h
:
#import <UIKit/UIKit.h>
@interface MYTableViewCell : UITableViewCell
@end
MYTableViewCell.m
:
#import "MYTableViewCell.h"
@implementation MYTableViewCell
- (void)layoutSubviews
{
[super layoutSubviews];
if (self.imageView.image) {
self.imageView.frame = CGRectMake(CGRectGetWidth(self.contentView.bounds) - 32 - 8,
CGRectGetMidY(self.contentView.bounds) - 16.0f,
32,
32);
CGRect frame = self.textLabel.frame;
frame.origin.x = 8;
self.textLabel.frame = frame;
frame = self.detailTextLabel.frame;
frame.origin.x = 8;
self.detailTextLabel.frame = frame;
}
}
@end
答案 5 :(得分:1)
在 swift3 和 swift4 中,我们可以使用这个:
click()
答案 6 :(得分:0)
此Soln用于在每个单元格中添加不同的图像....只需一次尝试
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
if(indexPath.row == 0) {
cell.image = [UIImage imageNamed:@"image.png"];
}
else if (indexPath.row == 1) {
cell.image = [UIImage imageNamed:@"image1.png"];
}
答案 7 :(得分:0)
要在Cell中添加图像@右手边,我建议你在右侧创建一个带有imageview的自定义单元格,它对你非常有用。 并添加一个空视图以将此nib与customcell类链接。
现在在你的单元格的nib文件中删除视图,添加tableViewcell并在该单元格中拖动&amp;将imageView放到右侧。
现在转到TableViewCell的类说DemoCell,创建一个插座并使用tablecell的nib中的imageview设置它
现在,在tableview的cellforrowatindexpath方法中引用你的单元格,并将它与这样的笔尖名称一起使用
static NSString *CellIdentifier = @"Cell";
DemoCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[SettingCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell = [[[NSBundle mainBundle]loadNibNamed:@"DemoCell" owner:self options:nil] lastObject];
}
并根据您的要求设置图像
cell.imageVw.img ....
答案 8 :(得分:0)
你可以通过调用imageview的setFrame方法调整accessoryview中的图像大小如下:[imageView setFrame:CGRectMake(0,0,35.0,35.0)];
答案 9 :(得分:0)
无需创建自己的图片,只需修改cell.tintColor
。
答案 10 :(得分:0)
有一种方法可以通过编程方式设置position
。以下是解决方案的Swift
版本:
image.frame = CGRect.init(
x: self.view.frame.width - image.frame.width*1.1,
y: image.frame.origin.y,
width: image.frame.width,
height: image.frame.height)
这会将您的图像定位在单元格的右侧。
该解决方案根据屏幕尺寸自动调整位置。
唯一的缺点是当您旋转设备时需要重新加载数据,但您可以在override
类UITableView
类中didRotate
监听方法:
override func didRotate(from fromInterfaceOrientation: UIInterfaceOrientation) {
_tableView.reloadData()}