I am using ECSlidingMenu with my project and I need to change rootview manually so I use this code
UINavigationController *transferView = [self.storyboard instantiateViewControllerWithIdentifier:@"Transfer"];
[self.slidingViewController anchorTopViewOffScreenTo:ECRight animations:nil onComplete:^{
CGRect frame = self.slidingViewController.topViewController.view.frame;
self.slidingViewController.topViewController = transferView;
self.slidingViewController.topViewController.view.frame = frame;
[self.slidingViewController resetTopView];
}];
after resetTopView , I got black weird bar as you see in image.
If I run the code (Change RootView Again) black bar will grow higher.
Does anyone undergo this issue?