gpt4 book ai didi

iphone - 在 iOS 7 中,viewForHeaderInSection 部分是从 1 而不是从 0 开始

转载 作者:IT王子 更新时间:2023-10-29 07:40:22 28 4
gpt4 key购买 nike

我在我的项目中处理 UITableView 并且这个项目是在 Xcode 4.5 中创建的,现在我正在使用 Xcode 5,所以我的问题是我什么时候会在 iOS 6 中运行我的项目, viewForHeaderInSection 方法部分是从 0 开始的,没关系,但是如果我将使用 iOS 7 运行 viewForHeaderInSection 部分是从 1 而不是 0 开始

问题是UITableView frame 有没有问题

我不明白这是怎么回事

提前致谢

最佳答案

刚遇到一模一样的问题,解决起来很简单。

只需实现这个委托(delegate)方法:

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 20;
}

表格Apple UITableViewDelegate Protocol Reference , 它提到了

Discussion

The returned object can be a UILabel or UIImageView object, as well as a custom view. This method only works correctly when tableView:heightForHeaderInSection: is also implemented.

关于iphone - 在 iOS 7 中,viewForHeaderInSection 部分是从 1 而不是从 0 开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18932476/

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