我想自定义我的TableViewCell,它只填充一个图像。我试着调整单元格和我的imageview的框架,但是当我运行这个程序时,我无法在屏幕上看到我的图像。
以下是关于客户单元的代码:
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
[self initLayout];
}
return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
- (void)initLayout {
self.imageView.frame = self.contentView.frame;
[self addSubview:_image];
}
- (void)resizeWithWidth:(NSInteger)width {
// I want the picture's width equal to the screen's, and the picture's height is 1/3 of its width
CGRect frame = [self frame];
frame.size.width = width;
frame.size.height = width / 3;
self.frame = frame;
self.imageView.frame = frame;
}
在我的TableViewController中,我以这种方式获取单元格:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
IntroductViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"introductcell" forIndexPath:indexPath];
// Configure the cell...
if (cell) {
cell = [[IntroductViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"introductcell"];
}
cell.imageView.contentMode = UIViewContentModeScaleAspectFill;
if (indexPath.row == 0) {
cell.imageView.image = [UIImage imageNamed:@"1.jpeg"];
} else if (indexPath.row == 1) {
cell.imageView.image = [UIImage imageNamed:@"2.jpeg"];
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
[cell resizeWithWidth:[UIScreen mainScreen].bounds.size.width];
return cell;
}
而且,这是我在运行程序时看到的内容:
PS:我注意到每个细胞都有一些空间。我该如何删除它们?PS 2:我试图删除该行:cell.selectionStyle = UITableViewCellSelectionStyleNone;在cellForIndex中,我发现当点击第二个单元格时,它会显示图像,但我仍然看不到第一个单元格中的第一个图像,是否存在某种关系?
答案 0 :(得分:0)
我发现代码存在一些可能的问题,但我无法保证在没有更多上下文的情况下解决问题。
1)您正在使用 - dequeueReusableCellWithIdentifier:forIndexPath:它要求您调用registerNib:forCellReuseIdentifier:或registerClass:forCellReuseIdentifier :(如果您使用的是接口构建器,则为第一个,如果仅在代码中定义了单元,则为第二个)。我猜你在你的情况下需要第二个。示例(这适用于TableViewController的viewDidLoad):
[tableView registerClass: [IntroductViewCell class] forCellReuseIdentifier: @"introductcell"];
很抱歉,如果我的Objective-C有点偏差,我在过去一年左右一直专门使用Swift。如果你已经有了这个但是把这个部分留下了这个问题,那就没关系了。
2)摆脱这一点:
if (cell) {
cell = [[IntroductViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"introductcell"];
}
首先,你可能想要!在那里(或类似的东西)。您可能不想废弃已存在的单元格(如果没有分配,您想要一个新单元,对吧?如果单元检索成功则不重新分配)。其次,一旦你执行registerClass /它就不再需要了 dequeueReusableCellWithIdentifier:forIndexPath:combo(特别是后一种方法将始终返回一个有效的单元格。)
答案 1 :(得分:-1)
删除分隔线使用 tableView.separatorStyle = UITableViewCellSeparatorStyleNone;