Skip to content

Instantly share code, notes, and snippets.

@patelrohan
Last active December 14, 2015 21:49
Show Gist options
  • Save patelrohan/5153535 to your computer and use it in GitHub Desktop.
Save patelrohan/5153535 to your computer and use it in GitHub Desktop.
issue
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
InvProductDetailViewController *idvc = [[InvProductDetailViewController alloc] initWithNibName:@"InvProductDetailViewController" bundle:nil];
[self.navigationController pushViewController:idvc animated:YES];
[idvc release]; //Zombie shows issue here. Commenting this line solved the issue but generated memory leak.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment