我不知道为什么,但是当我编写这段代码文档时,用我的xcode版本(7.0):
/**
Another description
- important: Make sure you read this
- parameter anInt: The number of times to cheer
*/
func commentBlockExample(anInt: Int) {
}
我明白了:
如果我这样写下来:
/// Another description
/// - important: Make sure you read this
/// - parameter anInt: The number of times to cheer
func commentBlockExample(anInt: Int) {
}
我明白了:
知道为什么吗?