vote up 0 vote down star

I have a very straight forward class with mostly NSString type properties. In it, I wrote a trivial implementation of the description method. I found that whenever I try to include "self" in the description, it crashes my iPhone app. An example is something such as the following:

- (NSString *)description
{
    NSString *result;

    result = [NSString stringWithFormat:@"me: %@\nsomeVar: %@", self, self.someVar];

    return result;
}

As soon as I remove the first parameter to the format string, self, it works as expected.

flag

63% accept rate

3 Answers

vote up 14 vote down check

Use %p for self, then it will display the address of self. If you use %@, then it will call description on self, which will set up an infinite recursion.

link|flag
vote up 3 vote down

You can use [super description] instead of self to avoid the infinite recursion, like so:

- (NSString *)description
{
    return [NSString stringWithFormat:@"%@: %@", [super description], [self someVar]];
}
link|flag
vote up 2 vote down

You do realise that sets up an infinite recursion.

Your description implementation is implicitly calling itself when you pass in self, which then calls itself, and so on.

Your crash is mostly likely due to stack space running out... a "stackoverflow" if you will. Fitting considering the site :-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.