In my flow having redirection v1 to v2 to v3 to v4.... v9. Now when I reached to v9 and that time I receive remote notification that time "DidReceiveRemoteNotificationWillCall". Now I do redirection to V10 Screen from notification, that time my application crash with [V5 tableView:heightForHeaderInSection]
message sent to deallocated instance.
Now I don't know, how to called tableview method of V5 screen. I have not been able to find what is the main issue.
Nothing big and complicated in my code:
todayAppointmentScreen=[[Confirmation3VC alloc]initWithNibName:@"Confirmation3VC" bundle:nil];
[self.navControl pushViewController:currentLocationScreen animated:YES];
I'm just redirecting like above code.
self.navcontrol
when I'm redirecting when receiving notification. Andself.navigationcontaoller
used when Redirection code from uiviewcontroller - Yogendra Patel