美文网首页iOS扩展iOS,object-c和swift开发程序员
Xcode自动填充方法插件:AMMethod2Implement

Xcode自动填充方法插件:AMMethod2Implement

作者: Mellong | 来源:发表于2016-04-19 23:30 被阅读321次

    了解更多,请关注我的微信公众号:mellong

    AMMethod2Implement BannerAMMethod2Implement Banner

    简介

    AMMethod2Implement是一款可以自动的将.h或者.m .mm里边需要写入的方法自动填充进来的Xcode插件。使用过程中可以选择要导入的方法,然后按 Ctrl+A 或者点击Xcode顶部的菜单 Edit > AMMethod2Implement > Implement Method 就会自动生成填充好选中的方法,快捷键默认是Ctrl+A,也可以自行设置快捷键。

    目前版本支持h文件声明方法自动生成实现,m或者mm文件已写好的方法生成方法声明到h文件, extern NSString * const, @select(method:) 和 [self methodName] 实现代码生成,暂时只支持object-c语言,不支持swift。

    使用演示

    usageScreenshot.gifusageScreenshot.gif implement_selector.gifimplement_selector.gif

    安装方法

    安装方法目前有两种:

    1. 从github下载源代码进行安装

      • $ git clone git@github.com:MellongLau/AMMethod2Implement.git
      • 打开AMMethod2Implement项目运行,运行成功后程序会自动把插件文件拷贝到这个路径下:
        ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins
      • 重新启动Xcode使插件生效。
    2. 通过Xcode插件管理器 Alcatraz 进行安装,安装完成后也要重新启动Xcode使插件生效。

    安装后无法使用怎么办

    如果安装后出现无法使用的情况,可以尝试在终端运行以下命令:

    curl https://raw.githubusercontent.com/cielpy/RPAXU/master/refreshPluginsAfterXcodeUpgrading.sh | sh

    运行完重启Xcode再试。

    插件地址:
    https://github.com/MellongLau/AMMethod2Implement

    相关文章

      网友评论

        本文标题:Xcode自动填充方法插件:AMMethod2Implement

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