Last active
December 14, 2015 21:49
-
-
Save patelrohan/5153535 to your computer and use it in GitHub Desktop.
issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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