I have following code in application: didFinishLaunchingWithOptions:
_tabBarController = [ [ DGTabBarController alloc ] init ];
_tabBarController.viewControllers = @[library, Login];
self.window.rootViewController = _tabBarController;
[_tabBarController presentCreationViewControllerWithYarn:nil];
and in DGTabBarController.m
- (void)presentCreationViewControllerWithYarn:(DGYarn*)yarn;
{
DGPagesViewController *createPagesViewController = [[DGPagesViewController alloc] initWithYarn:yarn];
[self presentViewController:createPagesViewController animated:YES completion:nil];
}
On every start I receive a warning in debug log "Unbalanced calls to begin/end appearance transitions for ."
How this could be fixed?