gpt4 book ai didi

ios - 如何在 UITableViewCell 中设置 IndentationLevel?

转载 作者:行者123 更新时间:2023-11-30 14:10:50 24 4
gpt4 key购买 nike

我是 swift 新手。

如何在UITableViewCell中设置IndentationLevel?

我已经通过Objective C实现了,但无法通过Swift实现。

编辑:

- (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] ;
}

cell.textLabel.text=[[self.menuTableAr objectAtIndex:indexPath.row] valueForKey:@"name"];
[cell setIndentationLevel:[[[self.menuTableAr objectAtIndex:indexPath.row] valueForKey:@"level"] intValue]];

return cell;
}

谢谢

最佳答案

假设valueForKey将返回一个NSNumber对象

尝试

let level = self.menuTableAr.objectAtIndex(indexPath.row).valueForKey("level") as! NSNumber
cell.indentationLevel = Int(level.intValue)

关于ios - 如何在 UITableViewCell 中设置 IndentationLevel?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31788103/

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