gpt4 book ai didi

Swift 中代表的 iOS 文档?

转载 作者:搜寻专家 更新时间:2023-11-01 07:22:31 24 4
gpt4 key购买 nike

我们应该如何记录 Swift 中的委托(delegate)?如果我将我的文档放在协议(protocol)中,该类将看起来是空的(文档方面),反之亦然。如果我把它放在两个地方,维护起来会很麻烦。

是否有某种方法可以将我们类中的方法链接到记录的协议(protocol)方法?

协议(protocol)的代码文档示例:

protocol SomeDelegate: class {
/**
Awesome method
- parameters:
- oneParam: This works great
*/
func testAwesome(oneParam: Int)


}

在我的课上:

class AwesomeClass: SomeDelegate {
/// Should we just make a little note? Or what does apple expect?
func testAwesome(oneParam: Int) {
// implement stuff
}
}

编辑:

另见示例:

/// - Note: Implementation of Something, (note this works)
/// - SeeAlso: Test (note this does not show when holding alt)
func doneWithSomething() {

}

最佳答案

主要的解释应该放在协议(protocol)类上,以便将实现您的委托(delegate)的开发人员知道将要实现什么。

在你的类文件中添加一些关于方法的解释,并在命名协议(protocol)类的注释中使用 SeeAlso 标签

class AwesomeClass: SomeDelegate {
/*
Should we just make a little note? Or what does apple expect?

- SeeAlso: `SomeDelegate`
*/
func testAwesome(oneParam: Int) {
// implement stuff
}
}

关于Swift 中代表的 iOS 文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38069792/

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