目录1、简述2、创建对象2.1 使用 new 关键字(最常见)2.2 使用反射 Class.newInstance()(不推荐)2.3 使用反射 Constructor.newInstance()(推荐反射方式)2.4 使用 clone() 方法(浅拷贝)2.5 使用反序列化(从字
I have a NSMutableArray I get by loading a plist into it. The date field comes in as a string and i want to change it into a nsdate. I can change an nsstring into an nsdate.