suppose i have a class Foo and an instance of this class myFoo:
Foo *myFoo;
is there any method "dispalyFooObjectName" that can display the name of the object, for exmample :
NSLog(@"i was called from %s", [myFoo dispalyFooObjectName]);
and the result will be :
i was called from myFoo