Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Swipe between two UIViewControllers' views

I know I have asked this question a couple of times, but I'm very inexperienced and don't think I've been given the right answer yet.

I now have two view controllers, each with a .h file, a .m file, and a .xib file. In both the .xib files, I have a UIView. How can I make it so that you can swipe between these two views? For example, the app opens on the first view, then you swipe from the right to the left and the next view appears. I want the animation of the swiping to be like that of the Photos app when swiping through photos.

like image 240
user2397282 Avatar asked Aug 04 '13 20:08

user2397282


People also ask

How to add swipe gesture in swift?

Enter Swift as Language and choose Next. Go to the Storyboard and drag a Label to the main view. Set the title of the Label to "Swipe" . Select the Resolve Auto Layout Issues button and select Reset to Suggested Constraints.

What is pageview controller in iOS?

The PageViewController is used in many of the iOS applications to let the user navigate between the various pages of the content of the application. The navigation can be controlled programmatically in the application. The PageViewController uses the transition that we specify to animate the change.


2 Answers

While you could implement this yourself (with custom container view controller in conjunction with UIPanGestureRecognizer or UIScrollView), if using iOS 6 and later, the easiest way will be to use a Page View Controller with "scroll" transition style.

Consider this storyboard:

pageviewcontroller storyboard

It consists of a page view controller, and two scenes for two pages. Page 1 has a storyboard identifier of one and a base class of PageOneViewController. Page 2 has a storyboard identifier of two and a base class of PageTwoViewController.

I then wrote a UIPageViewController subclass (and, perhaps obvious, this is the class I specified for the first scene of the above storyboard), which has the following code:

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.dataSource = self;

    [self setViewControllers:@[[self.storyboard instantiateViewControllerWithIdentifier:@"one"]] direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil];
}

- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerBeforeViewController:(UIViewController *)viewController
{
    if ([viewController isKindOfClass:[PageOneViewController class]])
        return nil;

    return [self.storyboard instantiateViewControllerWithIdentifier:@"one"];
}

- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerAfterViewController:(UIViewController *)viewController
{
    if ([viewController isKindOfClass:[PageTwoViewController class]])
        return nil;

    return [self.storyboard instantiateViewControllerWithIdentifier:@"two"];
}

You could do this with NIBs, too, but it requires writing more code. If you search for UIPageViewController XIB and you'll probably get some hits.

If you need to support iOS versions prior to 6.0, you'll have to do the custom container approach with pan gesture or scroll view.

like image 69
Rob Avatar answered Nov 29 '22 00:11

Rob


There are a number of right ways to to rich your goal.

For example:

1) From iOS 6 you can use UIPageViewController with transitionStyle property UIPageViewControllerTransitionStyleScroll

2) You can use UIScrollView with property pagingEnable = YES; and add your views inside it. Also you will need to implement all containers methods addChildViewController:, removeFromParentViewController, willMoveToParentViewController:, didMoveToParentViewController: to deal with with appear/disappear mathods of your controllers

3) you can find third-party solution like:

  • TTScrollSlidingPagesController
  • PagerViewController
like image 40
Flop Avatar answered Nov 29 '22 00:11

Flop