Hi
I have a UITableView inside a UITabBarController.
When I'm calling
[[self navigationController] pushViewController:myViewController animated:YES];
there is no problem.
but,
When I'm calling the same line from inside a UIActionSheetDelegate, for example:
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
I get EXC_BAD_ACCESS.
It seems that calling this line from a different thread causing this issue.
How can I prevent this EXC_BAD_ACCESS issue?
(notice that myViewController is NOT nil, or something like that)
thanks!