根据名字字符串挑战到指定的类
NSDictionary * d=@{@"name":@"zefeng"};
NSString * name =[[d allKeys]objectAtIndex:0];
[self presentViewController:[[NSClassFromString(name) alloc]init] animated:YES completion:nil];
NSDictionary * d=@{@"name":@"zefeng"};
NSString * name =[[d allKeys]objectAtIndex:0];
[self presentViewController:[[NSClassFromString(name) alloc]init] animated:YES completion:nil];