I have a custom object, Spaces
:
#import \"Spaces.h\"
@implementation Spaces
@synthesize spaceName;
@synthesize spaceUsers;
@synthesize spaceIcon;
It sounds like [cell spaceName]
has been autoReleased. I cannot see how you have defined that, but take a look at that part of your code.
If you need more help, you need to provide more code.
Perhaps your aSpace = [spaces objectAtIndex:[indexPath row]];
is not returning a Space object. Perhaps before you try and use it you test to make sure with something like if ([aSpace class] == [Spaces class])