Im creating a new design to my app so I have created a new story board. I need to support the older design for now, but I am designing the upcoming one on the fly. I am reusing some classes and ViewControllers. Is there a way to check the storyboard name in classes? For Example, if 'main' storyboard have the normal left bar button item, however if 'newDesign' do 'x'?
I cant find a way to get the 'UIStoryboard' name?
For example in pseudocode:
if(self.storyboard.name isEqualToString: @"Main"){
}else{
}