首先我们要知道storyboard的名字
其次给viewController一个标识符
之后就是代码了
UIStoryboard *story = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
FindThirdViewController *third = [story instantiateViewControllerWithIdentifier:@"FindThird"];[self.navigationController pushViewController:third animated:YES];