zoukankan      html  css  js  c++  java
  • 常用的code snipper

    Xcode 10.2.1 版本,自动代码提示功能延迟很大,很多情况下代码提示甚至会无效,但是code snippet 唤起的响应很快,从提高效率的情况考虑,即使系统提供的代码提示制作成code snippet也是合适的。

    一下记录常用的code snippet 

    1,

    @interface <#statement#>()

    <#statement#>

    @end

    2,

    - (void)setBaseProperty{

        <#statement#>

    }

    3,

    -(void)addDataToSubviewsWithModel:(<#statement#> *)model{

        

    }

    4,

    if (self == [super init]) {

        <#statement#>

        }

        return self;

    5,

    - (instancetype)initWithFrame:(CGRect)frame{

        if (self == [super initWithFrame:frame]) {

            <#statement#>

        }

        return self;

    }

    6,

    @property (nonatomic,assign) <#statement#> <#statement#>;

    7,

    @property (nonatomic ,copy) <#statement#> *<#statement#>;

    8,

    @property (nonatomic ,strong) <#statement#> *<#statement#>;

    9,

    @property (nonatomic ,weak) <#statement#> <#statement#>;

    10,

    @protocol  <#statement#>Protocol<NSObject>

    // loading

    - (void)presenterStartLoading;

    - (void)presenterEndLoading;

    // 加载数据

    -(void)presenterLoadDataSuccess:(<#statement#> *)model;

    -(void)presenterLoadDataError:(NSError *)error;

    @end

    @interface <#statement#> : NSObject

    - (instancetype)initWithDelegate:(id<<#statement#>>) delegate;

    - (void)presenterLoadData;

    @end

    11,

    @interface <#modelName#>Protocol <NSObject>

    - (void)modelLoadDataSuccess:(NSMutableArray *)dataArray;

    @end

    @interface <#modelName#> : NSObject

    - (instancetype)initWithDelegate(id<<#protocolName#>>) delegate;

    - (void)modelLoadData;

    @end

  • 相关阅读:
    jython运行python文件
    jython查看帮助help和模块modules
    ubuntu 星际译王3.0.1-9.4隐藏主界面不能打开
    ubuntu火狐(firfox)浏览器安装视频插件
    ubuntu安装mp4播放器vlc & smplayer
    ubuntu+Windows双系统默认引导顺序
    notepad++ 各种颜色调整
    Linux绿色版软件expect
    aix下shell读取脚本文件并逐行执行
    AIX系统常用命令
  • 原文地址:https://www.cnblogs.com/huaida/p/11155928.html
Copyright © 2011-2022 走看看