Created
September 6, 2015 17:08
-
-
Save YusukeHosonuma/fd8ca838e44095c8d6d1 to your computer and use it in GitHub Desktop.
Reflection in Swift 2.0
This file contains hidden or 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
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