Skip to content

Instantly share code, notes, and snippets.

@kyleve
Last active February 3, 2018 23:01
  • Star 9 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save kyleve/90c889e584b9af6256ae to your computer and use it in GitHub Desktop.
// Make initialization + configuration of mutable classes (such as views) easier.
@warn_unused_result
public func Init<Type>(value : Type, @noescape block: (object: Type) throws -> Void) rethrows -> Type
{
try block(object: value)
return value
}
func example()
{
let label = Init(UILabel()) {
$0.font = UIFont.boldSystemFontOfSize(13.0)
$0.text = "Hello, World"
$0.textAlignment = .Center
}
}
@kyleve
Copy link
Author

kyleve commented Jan 2, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment