NSLog(@"%@",super) crashing
- by Chandan Shetty SP
I used NSLog(@"%@",super) in a method(any method) and it is crashing.... Why? How to print the super contents?
Updated :
currentclassname : superClassName
{
}
and also if i use NSLog(@"%@", [super description]); It is printing "<currentclassname: 0x3db7230>" instead of superClassName... It is expected to print superClassName right.
Thanks in advance,