I am working on a UIPageViewController based app using two sided mode. I have asked this question earlier also, but doesn't got proper solution, and after spending a lot of time on it, i have decided to ask the question again and tried to be more specific about the problem.
I took this example to start with UIPageViewController. I am trying to call the next view controllers by click of button not by gestures. Here is the code below that i am using.
//App Delagate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
self.viewController = [[[exampleViewController alloc] initWithNibName:@"exampleViewController" bundle:nil] autorelease];
NSMutableArray *arrayVC = [NSMutableArray array];
ViewOne *one = [[ViewOne alloc]init];
[arrayVC addObject:one];
ViewTwo *two = [[ViewTwo alloc]init];
[arrayVC addObject:two];
ViewThree *three = [[ViewThree alloc]init];
[arrayVC addObject:three];
ViewFour *four = [[ViewFour alloc]init];
[arrayVC addObject:four];
RegisterView *reg = [[RegisterView alloc]initWithNibName:@"RegisterView" bundle:nil];
[arrayVC addObject:reg];
SubscribeView *subs = [[SubscribeView alloc]initWithNibName:@"SubscribeView" bundle:nil];
[arrayVC addObject:subs];
SubscriptionViewController *subscription = [[SubscriptionViewController alloc]initWithNibName:@"SubscriptionViewController" bundle:nil];
[arrayVC addObject:subscription];
MyAccountViewController *myAcc = [[MyAccountViewController alloc]initWithNibName:@"MyAccountViewController" bundle:nil];
[arrayVC addObject:myAcc];
exampleViewController *viewsContainer = [[exampleViewController alloc]initWithViewControllers: arrayVC];
viewsContainer.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"2-bgs.png"]]; //[UIColor scrollViewTexturedBackgroundColor];
self.window.rootViewController = viewsContainer;
[self.window makeKeyAndVisible];
return YES;
}
//exampleViewController
-(id)initWithViewControllers:(NSMutableArray *)Controllers
{
self = [super initWithNibName:nil bundle:nil];
if(self)
{
VControllers=[[NSMutableArray alloc]init];
self.VControllers = Controllers;
self.viewControllrs = [[NSMutableArray alloc]initWithArray:VControllers];
NSLog(@"viewControllers :%@",viewControllrs);
pageController = [[UIPageViewController alloc]initWithTransitionStyle:UIPageViewControllerTransitionStylePageCurl navigationOrientation: UIPageViewControllerNavigationOrientationHorizontal options:nil];
self.pageController.view.frame = CGRectMake(22.0f, 32.0f, 708.0f, 945.0f);
self.pageController.delegate = self;
self.pageController.dataSource = self;
[self.pageController setViewControllers:[NSArray arrayWithObject:[VControllers objectAtIndex:0] ] direction:UIPageViewControllerNavigationDirectionForward animated:YES completion:^(BOOL finished)
{
}];
[self addChildViewController:self.pageController];
[self.view addSubview:self.pageController.view];
[self.pageController didMoveToParentViewController:self];
}
return self;
}
- (UIPageViewControllerSpineLocation)pageViewController:(UIPageViewController *)pageViewController
spineLocationForInterfaceOrientation:(UIInterfaceOrientation)orientation
{
NSArray *viewControllers = nil;
exampleViewController *currentViewController = [self.pageController.viewControllers objectAtIndex:0];
NSUInteger currentIndex = [self.VControllers indexOfObject:currentViewController];
if(currentIndex == 0 || currentIndex %2 == 0)
{
UIViewController *nextViewController = [self pageViewController:self.pageController viewControllerAfterViewController:currentViewController];
viewControllers = [NSArray arrayWithObjects:currentViewController, nextViewController, nil];
}
else
{
UIViewController *previousViewController = [self pageViewController:self.pageController viewControllerBeforeViewController:currentViewController];
viewControllers = [NSArray arrayWithObjects:previousViewController, currentViewController, nil];
}
//Now, set the viewControllers property of UIPageViewController
[self.pageController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionForward animated:YES completion:NULL];
return UIPageViewControllerSpineLocationMid;
}
- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerBeforeViewController:(UIViewController *)viewController
{
int index = [self.VControllers indexOfObject:viewController];
if (index - 1 >= 0)
{
return [self.VControllers objectAtIndex:index - 1];
}
return nil;
}
- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerAfterViewController:(UIViewController *)viewController
{
int index ;
index = [self.VControllers indexOfObject:viewController];
NSLog(@"index %d",index);
if (index + 1 < [self.VControllers count])
{
return [self.VControllers objectAtIndex:index + 1];
}
return nil;
}
//This method is called by button from the class viewTwo.
- (void)next1
{
NSLog(@"array viewControllrs :%@",viewControllrs);
Vcontr = [self.pageController.viewControllers objectAtIndex:0];
[self pageViewController:pageController viewControllerAfterViewController:Vcontr];
}
Now, the problem coming is this the array viewControllrs is empty. It is not holding the view Controllers in it when called this way by button, but when delegate methods are called by gestures it works fine. Can anyone guide me here.