Created
May 31, 2016 18:35
-
-
Save romanroibu/8325edc8d3887136842aa0825b5c7ee8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
//Inspired by: https://github.com/devxoul/Then | |
public protocol Configurable {} | |
extension Configurable { | |
public func configure(block: (inout Self)->Void) -> () -> Self { | |
return { | |
var copy = self | |
block(©) | |
return copy | |
} | |
} | |
} | |
extension NSObject: Configurable {} | |
//MARK:- Usage | |
class MyController: UIViewController, UITextFieldDelegate { | |
let titleLabel = UILabel().configure { | |
$0.textColor = UIColor.greenColor() | |
}() | |
lazy var valueField2: UITextField = UITextField().configure { | |
$0.delegate = self | |
}() | |
lazy var refreshControl: UIRefreshControl = UIRefreshControl().configure { | |
$0.addTarget(self, action: #selector(refresh(_:)), forControlEvents: .ValueChanged) | |
}() | |
func refresh(sender: AnyObject) { | |
//Refresh UI | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment