I am overriding an object\'s description method. I need to know how to print the object\'s memory address to replace {???} in the code below:
-(NSSt
To print address use %p format specifier and self pointer:
%p
-(NSString *) description { return [NSString stringWithFormat:@"\nparmeterOne: %@\nparameterTwo: %@", self, self.parameterOne, self.paramterTwo]; }