Does swift not have nested classes??
For example, I can\'t seem to access the property test of the master class from the nested class.
class master{
Nested for Swift and Java
Swift's Nested is more similar to Java's Static Nested, as a result you do not have an access to properties of outer class. To get access of outer class you can pass it as a parameter.
Swift's Nested
Java's Static Nested