In changeProductText you alloc/init showData, but then you replace it with arrayData which I presume is not retained or is released later. What you should do is call
[showData release];
showData = [[NSMutableArray alloc] initWithArray:arrayData];
See if that helps.
|