gpt4 book ai didi

ios - UITableViewCell 附件箭头未显示

转载 作者:行者123 更新时间:2023-12-01 18:12:57 26 4
gpt4 key购买 nike

我正在 xcode 6.1 中制作应用程序。我想将 tableview 样式更改为 UITableViewCellAccessoryDisclosureIndicator 我已经以编程方式使用它并使用 Storyboard但不显示箭头。下面的原因是我的代码。而且当我通过 Storyboard 更改表格 View 样式时,它显示在 Storyboard 中,但不在模拟器上。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *tableviewidentifier = @"Cell";
UITableViewCell *cell= [self.My dequeueReusableCellWithIdentifier:tableviewidentifier];
//cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellAccessoryDisclosureIndicator reuseIdentifier:tableviewidentifier];
if(cell==nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:tableviewidentifier];
}

cell.textLabel.text = [[self.jsonresultarr objectAtIndex:indexPath.row] objectForKey:@"Brand_Name"];
cell.textLabel.textColor=[UIColor brownColor];
cell.textLabel.font=[UIFont fontWithName:@"Hoefler Text" size:17.0];
// here just like follow ur other details
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.imageView.image=[UIImage imageNamed:@"drugs.jpg"];


return cell;
}

最佳答案

我遇到了同样的问题,问题是 Storyboard 中的 Tableview 没有固定在右侧(作为约束)。
所以在运行应用程序时,tableview 比屏幕宽得多,所以箭头被隐藏了。我通过正确设置约束来修复它。

关于ios - UITableViewCell 附件箭头未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26967893/

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