yos-social-objc
yos-social-objc copied to clipboard
Do not return the top most view controller
File YahooSession.m, after line 195 should add this code to get the top view controller: while (self.rootViewController.presentedViewController) { self.rootViewController = self.rootViewController.presentedViewController; }
How does this differ from popToRootViewControllerAnimated
? (Sorry, I just started learning iOS programming.)