Skip to content

Instantly share code, notes, and snippets.

@YusukeHosonuma
Created September 6, 2015 17:08
Show Gist options
  • Save YusukeHosonuma/fd8ca838e44095c8d6d1 to your computer and use it in GitHub Desktop.
Save YusukeHosonuma/fd8ca838e44095c8d6d1 to your computer and use it in GitHub Desktop.
Reflection in Swift 2.0
let p = Person(name: "Yusuke Hosonuma")
Mirror(reflecting: p).children.forEach {
print("\($0.label!), \($0.value)")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment