UIPageViewController

Aus Byte-Welt Wiki
Zur Navigation springenZur Suche springen

Hinzufügen von Seiten

UIViewController* newController = [UIViewController new];
[pageviewcontroller setViewControllers:[NSArray arrayWithObject:newController] direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil];

Es muss animated:NO gesetzt werden, sonst funktioniert es auf Grund eines Bugs nicht.

Löschen von Seiten

[pageviewcontroller setViewControllers:[NSArray arrayWithObject:controllerToShow] direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil];

Es muss animated:NO gesetzt werden, sonst funktioniert es auf Grund eines Bugs nicht.