gpt4 book ai didi

objective-c - UITableView 行分隔符对于 iOS 9 中的替代单元格可见

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

我面临 UITableView 行分隔符的问题。替代行的线条可见。 Missing line for alternative rows

将高度为 1 的 UIView 添加到单元格将给出解决方案,但这不是正确的方法。下面的代码在 iOS 8 上运行完美,但在 9 中却显示出不同的性质。

- (IBAction)curencySelect:(id)sender {
currencyTable = [[UITableView alloc]initWithFrame:CGRectMake(29, 257, 265,113) style: UITableViewStylePlain];
}
#pragma mark -
#pragma mark UITableViewDelegate
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{

return 1;
}

- (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section{


return currencyArray.count;

}

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


UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyIdentifier"];

if (cell == nil) {

cell =[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"MyIdentifier"];
}



cell.textLabel.text = [currencyArray objectAtIndex:indexPath.row];

return cell;
}

提前致谢。

最佳答案

模拟器的常见问题,无法始终显示 1 像素 View 。在“窗口”->“缩放”中将缩放设置为 100%。

关于objective-c - UITableView 行分隔符对于 iOS 9 中的替代单元格可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34176568/

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