OC_从故事板上取视图控制器

在storyboard中给视图设置Identifier,以便区别不同的视图控制器

UIStoryboard *story = [UIStoryboard storyboardWithName:@"storyboardName" bundle:nil];  
CustomerViewController *VC = [story instantiateViewControllerWithIdentifier:@"CustomVC"]; 

你可能感兴趣的:(OC_从故事板上取视图控制器)