I want to get class properties label in runtime. for example, I have this class:
class BasicD {
public var id_: Int64 = 0
public var a: Int32 = 0
public var c: NSData?
public var d: NSData?
}
I need to output to be: [id_,a,c,d]
I want somthing like reflection in java. I know mirror do like reflection, but for geting class properties in mirror I should initialize class first, but I do not want to do that.