I've tried the following codes. it crashed
NSNumber* a = [[NSNumber alloc] initWithLong:12];
NSNumber* b = [[NSClassFromString([NSString stringWithUTF8String:object_getClassName(a)]) alloc] initWithLong:12];
the following codes also crashed.
NSNumber* a = [[NSNumber alloc] initWithLong:12];
NSNumber* b = [[a class] alloc] initWithLong:12];
but the following codes worked
NSNumber* b = [[NSClassFromString(@"NSString") alloc] initWithLong:12]
when I want to get the class name from a NSNumber's instance. It's always return "__NSCFNumber" rather than "NSNumber". why?