All Projects → wleii → TrickerX

wleii / TrickerX

Licence: MIT license
An Xcode9+ Extension which make CodingKeys automatically.

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to TrickerX

Swiftai
SwiftAI, write Swift code smart. SwiftAI can generate Model class from JSON now. Codable and HandyJSON is supported. More features will be add.
Stars: ✭ 470 (+422.22%)
Mutual labels:  xcode-plugin, xcode-extension, codable
AMEGetterMaker
A lazyload getter maker without resign for Xcode
Stars: ✭ 42 (-53.33%)
Mutual labels:  xcode-plugin, xcode-extension
Xcodeequatablegenerator
Xcode 8 Source Code Extension will generate conformance to Swift Equatable protocol based on type and fields selection.
Stars: ✭ 188 (+108.89%)
Mutual labels:  xcode-plugin, xcode-extension
Swiftmockgeneratorforxcode
An Xcode extension (plugin) to generate Swift test doubles automatically.
Stars: ✭ 522 (+480%)
Mutual labels:  xcode-plugin, xcode-extension
Swimat
An Xcode formatter plug-in to format your swift code.
Stars: ✭ 1,388 (+1442.22%)
Mutual labels:  xcode-plugin, xcode-extension
ViewGenerator
⚒ ViewGenerator generates view code from variable name automatically in iOS development
Stars: ✭ 75 (-16.67%)
Mutual labels:  xcode-plugin, xcode-extension
Xalign
An amazing Xcode Source Editor extension to align regular code. It can align Xnything in any way you want.
Stars: ✭ 2,898 (+3120%)
Mutual labels:  xcode-plugin, xcode-extension
Awesome Xcode Extensions
Awesome native Xcode extensions.
Stars: ✭ 2,628 (+2820%)
Mutual labels:  xcode-plugin, xcode-extension
Codegenerator
A Xcode plugin for generate Objectice-C code.
Stars: ✭ 63 (-30%)
Mutual labels:  xcode-plugin, xcode-extension
Linessorter Xcode Extension
Xcode Extension that helps you keep your import statements and long code lists organized and uniform
Stars: ✭ 54 (-40%)
Mutual labels:  xcode-plugin, xcode-extension
Xcode developer disk images
Stars: ✭ 125 (+38.89%)
Mutual labels:  xcode-plugin, xcode-extension
Nef Plugin
🔌 an Xcode extension to use nef features easily
Stars: ✭ 144 (+60%)
Mutual labels:  xcode-plugin, xcode-extension
Linex
Feature packed Xcode extension
Stars: ✭ 210 (+133.33%)
Mutual labels:  xcode-plugin, xcode-extension
Snowonder
🔮 Magical import declarations formatter for Xcode
Stars: ✭ 100 (+11.11%)
Mutual labels:  xcode-plugin, xcode-extension
Pragmatic
⚙An Xcode Source Editor extension for simplifying common pragma driven tasks
Stars: ✭ 24 (-73.33%)
Mutual labels:  xcode-plugin, xcode-extension
Import
Xcode extension for adding imports from anywhere in the code ☝️
Stars: ✭ 818 (+808.89%)
Mutual labels:  xcode-plugin, xcode-extension
Xbookmark
Bookmark Plugin for Xcode 8.x and 7.x
Stars: ✭ 72 (-20%)
Mutual labels:  xcode-plugin, xcode-extension
Xgist
Xcode extension to send code to GitHub's Gist
Stars: ✭ 75 (-16.67%)
Mutual labels:  xcode-plugin, xcode-extension
Stuff
A collection of Swift code 'snippets' that are too small to create a library for and which do not fit in an other library.
Stars: ✭ 41 (-54.44%)
Mutual labels:  codable
Xfunnyeditor
Xcode plugin to display an image on the background of the editor
Stars: ✭ 92 (+2.22%)
Mutual labels:  xcode-plugin

TrickerX

An Xcode9+ Extension which make CodingKeys automatically.

Make CodingKeys

How to use

  1. Download the installation package I provide, or you can download project and build it yourself.
  2. Open the App you have installed
  3. Launch Xcode -> Open Make CodingKey File -> Editor -> Codable -> Make CodingKeys (PS: If you need, you can bind the shortcut key for this :]

More specific methods of use

TrickerX also support the following way to define keys, e.g.

struct CustomKey: Codable {
    // TrickerX will parsing the syntax //my_custom_key 
    private let key: String //my_custom_key
}

result

struct CustomKey: Codable {
    // TrickerX will parsing the syntax //my_custom_key 
    private let key: String 

    enum CodingKeys: String, Codable {
        case key = "my_custom_key"
    }
}

Contributes

Welcome :]

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].