I have a problem with passing data between View Controllers
Now, to open Base Chat VC, from ConversationsVC I use
UINavigationController *chatNav = (UINavigationController *)[self.storyboard instantiateViewControllerWithIdentifier:@"chatNav"];
[self.navigationController presentViewController:chatNav animated:YES completion:nil];
Where @"chatNav" is first navigation controller. I need pass data from ConversationsVC to Base Chat VC, I have no idea how to do it. If you have any idea, please help me. Thanks!