Code Monkey home page Code Monkey logo

extensionproperty's Introduction

Extension Property

platforms Swift4.1 License
Carthage SwiftPM Version

The utility interface for Associated Object. If you use this, you can attach any variables in extension.

Usage

protocol Animal {}

enum AnimalPropertyKeys: String, ExtensionPropertyKey {
    case name
}

final class Dog: Animal {}

extension Dog: ExtensionProperty {}

// Declare setter and getter to property
extension Animal where Self: ExtensionProperty {
    var name: String {
        get {
            return getProperty(key: AnimalPropertyKeys.name, defaultValue: "")
        }

        set {
            setProperty(key: AnimalPropertyKeys.name, newValue: newValue)
        }
    }
}

let dog = Dog()

// You can assign string to dog.name
dog.name = "Autumn"

Please check out and try the unit test.

Installation

Carthage

If you’re using Carthage, simply add ExtensionProperty to your Cartfile:

github "cats-oss/ExtensionProperty"

CocoaPods

ExtensionProperty is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'ExtensionProperty'

Swift Package Manager

If you’re using Swift Package Manager, simply add ExtensionProperty to your Package.swift:

dependencies: [
    .package(url: "https://github.com/cats-oss/ExtensionProperty", from: "1.0.2")
]

Requirements

  • Xcode 9.3
  • Swift 4.1 or greater

LICENSE

ExtensionProperty is available under the MIT license. See the LICENSE file for more info.

extensionproperty's People

Contributors

marty-suzuki avatar matsuokah avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.