In objective-C, to move another viewcontroller from different storyboard, we will use following coding to fulfil what we want.
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Customer" bundle:nil];
HomeSummaryViewController *creaccVC = [storyboard instantiateViewControllerWithIdentifier:@"HomeSummaryViewController"];
[self.navigationController pushViewController:creaccVC animated:YES];
In swift version, please help me to how to do just like Objective-C?