I am getting memory leak theFileName = [[responseString lastPathComponent]stringByDeletingPathExtension];
theFileName is a global variable. I have synthesized it and
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]))
{
// Custom initialization
theFileName = [[NSString alloc] init];
}
return self;
}
- (void)requestFinished:(ASIHTTPRequest *)request{
//internally calls this function
// Use when fetching text data
NSString *responseString = [request responseString];
//NSLog(@"the responsestring for download is:%@",responseString);
theFileName = [[responseString lastPathComponent]stringByDeletingPathExtension];
//NSLog(@"the theFileName for download is:%@",theFileName);
//adds extension .jpg to file name
NSString *jpg=@".jpg";
NSString *addjpg=[theFileName stringByAppendingString:jpg];
//NSLog(@"append %@",addjpg);
}
Released it in dealloc.
-(void)dealloc
{
[thefileName release];
}
}

-deallocyourself except onsuperwithin self'sdealloc. Speaking of which, you're also not callingdealloconsuper. – SK9 Jun 28 '11 at 23:36deallocis akin to the deconstructor inC++and you don't ever call this yourself. Instead, inC++its called automatically when you declaredeleteif I remember right. Good luck and enjoy your study - I learned a ton from this site! :) – SK9 Jun 29 '11 at 0:01