Double navigation bar image
Guys, i'm pushing from a view, that not support segue, programmatically using the code:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
OtherUsersProfileViewController * vc=[storyboard instantiateViewControllerWithIdentifier:@"OtherUsersProfileViewController"];
vc.agent_ID = self.opponentID;
vc.agent_Name = self.title;
[self.navigationController pushViewController:vc animated:YES];
And in OtherUsersProfile im getting a double navigation bar, what can it be?