gpt4 book ai didi

iphone - 更改 uitableviewcell 的宽度

转载 作者:行者123 更新时间:2023-12-03 20:35:38 27 4
gpt4 key购买 nike

我尝试更改表格 View 中单元格的 with,我不做自定义单元格,我只是子类化 uitableviewcell。

这就是类(class)

@implementation customCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {

if (self = [super initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reuseIdentifier]) {

CGRect nouveauframe = CGRectMake(0.0, 0.0, 44,44);

self.frame = nouveauframe;

}
return self;
}

-(void)dealloc
{

[super dealloc];
}

@end

这是我在 cellForRowAtIndexPath 中创建单元格时的情况:

static NSString *CellIdentifier = @"customCell";

customCell *cell = (customCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {
cell = [[[customCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier] autorelease];
}

// Configure the cell...

[[cell textLabel]setText:[[[[Mission singletonMission] getObjectDataHistoireEncours] objectAtIndex:indexPath.row] valueForKey:[[langue singletonLangue] valeurBalise: @"_nom_label"]]];

cell.detailTextLabel.text = [[[[Mission singletonMission] getObjectDataHistoireEncours] objectAtIndex:indexPath.row] valueForKey:[[langue singletonLangue] valeurBalise: @"_valeur"]];

cell.userInteractionEnabled = FALSE;

retour = [cell retain];

但是我的单元格的宽度没有改变,为什么?

最佳答案

TableView 在添加到 TableView 时会更改单元格的框架。如果要更改单元格的宽度,您应该更改表格的宽度,或更改单元格中 contentView 的宽度。

关于iphone - 更改 uitableviewcell 的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3550870/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com