mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
iOS: fixed #955 (split screen issue)
This commit is contained in:
parent
27fbf12081
commit
022ea721b1
1 changed files with 9 additions and 2 deletions
|
@ -343,8 +343,15 @@
|
|||
}
|
||||
|
||||
- (void)transitionFromFeedDetail {
|
||||
// [self performSelector:@selector(resetPages) withObject:self afterDelay:0.5];
|
||||
[appDelegate.masterContainerViewController transitionFromFeedDetail];
|
||||
if (appDelegate.masterContainerViewController.storyTitlesOnLeft) {
|
||||
[appDelegate.navigationController
|
||||
popToViewController:[appDelegate.navigationController.viewControllers
|
||||
objectAtIndex:0]
|
||||
animated:YES];
|
||||
[appDelegate hideStoryDetailView];
|
||||
} else {
|
||||
[appDelegate.masterContainerViewController transitionFromFeedDetail];
|
||||
}
|
||||
}
|
||||
|
||||
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator {
|
||||
|
|
Loading…
Add table
Reference in a new issue