美文网首页
Xcode 代码块

Xcode 代码块

作者: RogerHXJ | 来源:发表于2017-01-09 22:23 被阅读125次

    创建 Xcode 代码块快捷键可以提高代码输入速度。
    常用代码块如下:

    // 属性
    @property (nonatomic, strong) <#Class#> *<#object#>;
    @property (nonatomic, weak) <#Class#> *<#object#>;
    @property (nonatomic, assign) <#Class#> <#name#>;
    

    将上面所需的代码块选中后,拖到 Xcode 右下角代码块区域,之后会弹出如下代码块编辑窗口:

    代码块编辑窗口

    选项设置:
    Title: 创建的代码块标题
    Summary: 代码块概要
    Playform: 适用的平台
    Language: 语言
    Completion Shortcut: 代码块快捷键
    Completion Scopes: 代码块适用范围

    相关文章

      网友评论

          本文标题:Xcode 代码块

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