美文网首页
Swift 注释

Swift 注释

作者: JaiUnChat | 来源:发表于2016-05-17 11:59 被阅读16次

Apple官方关于文档注释的解释

附上一个例子

/// 初始化一个带边框的圆角按钮
///
/// - parameter button: 需要设置的按钮 类是引用类型
/// - parameter conerRadius: 圆角半径
/// - parameter borderWith: 边框宽度
/// - parameter tintColor: 边框以及文字颜色
func initButton(button: UIButton, conerRadius: CGFloat, borderWith: CGFloat, tintColor: UIColor) {
    button.titleLabel?.tintColor = tintColor
    button.layer.masksToBounds = true
    button.layer.cornerRadius = conerRadius
    button.layer.borderWidth = borderWith
    button.layer.borderColor = tintColor.CGColor
}  

参数多的时候就可以用 - parameters

  /// 初始化一个带边框的圆角按钮
  ///
  /// - parameters:
  ///   - button: 需要设置的按钮 类是引用类型
  ///   - conerRadius: 圆角半径
  ///   - borderWith: 边框宽度
  ///   - tintColor: 边框以及文字颜色

Swift 里的文档注释采用了Markdown

关键词列

关键词大小写都可以
- Attention: Watch out for this!
- Author: Tim Cook
- Authors:
John Doe
Mary Jones
- Bug: This may not work
- Complexity: O(log n) probably
- Copyright: 2016 Acme
- Date: Jan 1, 2016
- experiment: give it a try
- important: know this
- invariant: something
- Note: Blah blah blah
- Precondition: alpha should not be nil
- Postcondition: happy
- Remark: something else
- Requires: iOS 9
- seealso: something else
- Since: iOS 9
- Todo: make it faster
- Version: 1.0.0
- Warning: Don't do it

相关文章

  • Swift学习-02-基础控件

    Swift 基础控件基础 在Swift中得注释方法 pragma mark 变为 // MARK:- 普通注释依然...

  • Swift 注释技巧

    我的博客原文地址 Swift注释技巧 //单行注释 /* 多行注释 */ /// 标记注释方式1 /** 标记注释...

  • swift 注释

    小公司开发人员比较随意,最近老大要求严格了起来,让编写公司内部的代码规范了解到了一些swift中的注解与OC基本一...

  • Swift注释

    Swift注释 //MARK: 对方法注释 //TODO: 有待完成的代码 //FIXME: 代码修改过

  • Swift 注释

    Apple官方关于文档注释的解释 附上一个例子 参数多的时候就可以用 - parameters Swift 里...

  • Swift注释

    首先值得注意的是原本在OC中 pragma mark - Methods 这样的注释改为了 //MARK:** -...

  • 【Xcode小技巧】注释

    Swift版注释 OC注释详解 没有任何注释时: 点击方法浏览: TODO注释 在方法浏览中,强调TODO的内容 ...

  • 18.常见注释

    单行注释 Swift 中的注释与C 语言的注释非常相似。 单行注释以双正斜杠(//)作为起始标记 多行注释 其起始...

  • 23 Swift 注释

    单行注释 Swift 中的注释与C 语言的注释非常相似。 单行注释以双正斜杠(//)作为起始标记 多行注释 其起始...

  • Swift学习笔记<一>

    本节要点 Swift的特点 Swift的关键字总结 Swift的注释 Swift的特点 1.类型推断机制 Swif...

网友评论

      本文标题:Swift 注释

      本文链接:https://www.haomeiwen.com/subject/fclirttx.html