I have the following problem:
in header;
GDataXMLDocument *doc; NSString *xmlBody; @property (nonatomic,copy) NSString *xmlBody; @property (nonatomic
If you want to release an ivar/property(retain), this is not how to to it:
[self.doc release];
instead:
self.doc = nil;