Skip to content
Snippets Groups Projects
Commit 9b2b3de5 authored by jakobsbode's avatar jakobsbode
Browse files

do not present connectionDetails, if the first time credentials failed in Onboarding.

parent a112688b
No related branches found
No related tags found
No related merge requests found
...@@ -140,6 +140,8 @@ ...@@ -140,6 +140,8 @@
*/ */
- (void)moveNextPage; - (void)moveNextPage;
- (void)gotoLastPage;
- (void)fadeBackground:(UIImage *) newImage; - (void)fadeBackground:(UIImage *) newImage;
@end @end
...@@ -319,6 +319,11 @@ static NSString * const kSkipButtonText = @"Skip"; ...@@ -319,6 +319,11 @@ static NSString * const kSkipButtonText = @"Skip";
} }
} }
- (void)gotoLastPage {
[self.pageVC setViewControllers:@[self.viewControllers[self.viewControllers.count-1]] direction:UIPageViewControllerNavigationDirectionForward animated:YES completion:nil];
[self.pageControl setCurrentPage:self.viewControllers.count-1];
}
#pragma mark - Onboarding content view controller delegate #pragma mark - Onboarding content view controller delegate
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment