I have an NSObject with some properties as in:
public class Contact: NSObject {
var first: String = ""
var last: String = ""
var title: String = ""
//and so forth
}
Is there a simple way to get the values of the object properties for a single instance of the object, ie one Contact, into an array such as:
{"Bob","Smith","Vice President"}
I can't seem to find a straightforward way to do this. Thanks in advance for any suggestions.