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
Just do this, this may solve your query
NSString *storyboardName; if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { storyboardName = @"iPad"; } else { storyboardName = @"iPhone"; } UIStoryboard *storyBoard = [UIStoryboard storyboardWithName:storyboardName bundle:nil];