gpt4 book ai didi

ios - UITableViewCell 和 UILabel

转载 作者:行者123 更新时间:2023-12-01 17:32:40 25 4
gpt4 key购买 nike

我正在添加两个自定义 UILabel转至我的 UITableView 的一部分这样:

//in .h file:
NSArray *listaopzioni;
@property (nonatomic, retain) NSArray *listaopzioni;

//in .m file:
self.listaopzioni = [[NSArray arrayWithObjects:@"Strumenti",@"Help & Credits", nil] retain];

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}

if ([indexPath section]==0) {

cell.accessoryType = UITableViewCellAccessoryNone;

UILabel *slogan= [[UILabel alloc] initWithFrame:CGRectMake(0,0,cell.frame.size.width,cell.frame.size.height)];
slogan.text=[listaopzioni objectAtIndex:indexPath.row];
slogan.textAlignment=UITextAlignmentCenter;
slogan.font= [UIFont boldSystemFontOfSize:20];
slogan.backgroundColor=[UIColor clearColor];
[cell.contentView addSubview:slogan];
[slogan release];


}
}

一切都很完美,但是当我在表格 View 中上下滑动时(试图覆盖 UINavigationBar 下方的单元格),我得到了一个奇怪的效果:文本重叠只是使每个字母变厚。

怎么了?

最佳答案

方法cellForRowAtIndexPath每次单元格变得可见时都会调用。
这就是每次滚动时它都会创建标签的原因。
解决方案是在创建单元格时放置标签创建:

 if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];

if ([indexPath section]==0) {

cell.accessoryType = UITableViewCellAccessoryNone;

UILabel *slogan= [[UILabel alloc] initWithFrame:CGRectMake(0,0,cell.frame.size.width,cell.frame.size.height)];
slogan.text=[listaopzioni objectAtIndex:indexPath.row];
slogan.textAlignment=UITextAlignmentCenter;
slogan.font= [UIFont boldSystemFontOfSize:20];
slogan.backgroundColor=[UIColor clearColor];
[cell.contentView addSubview:slogan];
[slogan release];


}
}

关于ios - UITableViewCell 和 UILabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15176928/

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