gpt4 book ai didi

ios - Swift:转换这个 Objective C 方法

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

iOS 的新手,不太确定我在这里做错了什么......我正在关注 this tutorial为了构建 Accordion 风格的 UITableView,作者似乎实现了一个扩展 UITableViewController 的委托(delegate)函数。本教程不符合任何委托(delegate),因此我只能假设您能够直接编写扩展。

原代码为:

- (BOOL)tableView:(UITableView *)tableView canCollapseSection:(NSInteger)section
{
if (section>0) return YES;

return NO;
}

分析完后,我在 Swift 中构建了以下内容:

func tableView(tableView: UITableView, canCollapseSection section: Int) -> Bool {
if section > 0 {
return true
}
return false
}

我知道它是一个非常简单的函数,但我想让这个函数作为所提供的基本 TableView 函数的扩展来工作。目前,当我这样调用它时,XCode 无法识别此函数

self.tableView.canCollapseSection(tableView, indexPath.section)

最佳答案

你可以这样调用它

self.tableView(tableView, canCollapseSection: indexPath.section)

关于ios - Swift:转换这个 Objective C 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28110974/

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