gpt4 book ai didi

ios - 从 ViewController 调用 UITableViewDelegate 方法

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:20:35 24 4
gpt4 key购买 nike

我想从我的 View Controller 类中调用以下方法:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section; 

但是对于我的生活,我无法弄清楚该怎么做。我试过:

UIView *view = [tableView viewForHeaderInSection:section];
UIView *view = [self viewForHeaderInSection:section];
UIView *view = [self tableView:viewForHeaderInSection:section];

都给我报错。就是开头那个额外的 tableView: 位。任何人都可以提供一些建议或至少解释一下 tableView:(UITableView *)tableView 的含义吗?

谢谢!史蒂夫

最佳答案

我不知道你为什么要调用它,但如果它是在你调用它的同一个对象中实现的,那么你可以使用 self:

UIView* view = [self tableView:tableView viewForHeaderInSection:section];

否则,您可以从tableView中获取委托(delegate)并调用委托(delegate):

id<UITableViewDelegate> theDelegate = tableView.delegate;
UIView* view = [theDelegate tableView:tableView viewForHeaderInSection:section];

关于ios - 从 ViewController 调用 UITableViewDelegate 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7666656/

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