I am pretty new to objective C, I was trying this:
I have NSMutableArray with different objects in it of different classes. Now I want to get the class name & related stuff & also check if the respective object is NSString or not.
How should I go about it..
I was trying something like this it wasn't working ofcourse
for(NSString *string in array){
NSLog(@"Name of the class : %@", [NSString stringWithCString:class_getName(Class id)];
`