gpt4 book ai didi

ios - 这怎么会发生 : iOS UITablveViewCell in UITableView

转载 作者:行者123 更新时间:2023-11-29 11:13:34 25 4
gpt4 key购买 nike

这是我的 tableView 代码,我正在使用一个 costom 单元格:

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *IOsCell = @"IOsCell";
IOsCellViewController *cell = [tableView dequeueReusableCellWithIdentifier:IOsCell];
if ( cell == nil )
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"IOsCellViewController" owner:self options:nil];
cell=[nib objectAtIndex:0];
}

我的 costom cell View 中有几个标签:

enter image description here

我正在努力解决的部分看起来就像图片。

在底部在 UITableView 中有一个单元格 View 。

enter image description here

我不知道这怎么会发生以及如何解决这个问题。

希望我说得够清楚了。非常感谢任何帮助。

谢谢。

最佳答案

两个建议:

  1. 确保您的 tableView:numberOfRowsInSection 返回正确的数字(从您的屏幕截图来看,该部分似乎应该至少返回 4)

  2. 确保您的 tableView:heightForRowAtIndexPath 返回该自定义单元格的正确高度

还有一个经典的问题,我已经被烧毁了几次:确保你的委托(delegate)正确连接,以便这些方法实际上被调用。

关于ios - 这怎么会发生 : iOS UITablveViewCell in UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10444046/

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