I want to know what is the current loaded storyboard,I used the below code but it is still get me the Main storyboard not the current.
//This get me the Main storyboard
[[NSBundle mainBundle].infoDictionary objectForKey:@"UIMainStoryboardFile"];
Building on Durican's answer above:
Within a view controller:
UIStoryboard * storyboard = self.storyboard;
NSString * storyboardName = [storyboard valueForKey:@"name"];
(The name will not include the ".storyboard" filename extension.)