UIPageViewController: Unterschied zwischen den Versionen
Aus Byte-Welt Wiki
Zur Navigation springenZur Suche springenZeile 2: | Zeile 2: | ||
<code=objc> | <code=objc> | ||
UIViewController* newController = [UIViewController new]; | UIViewController* newController = [UIViewController new]; | ||
− | [pageviewcontroller setViewControllers:[NSArray arrayWithObject:newController] direction:UIPageViewControllerNavigationDirectionForward animated: | + | [pageviewcontroller setViewControllers:[NSArray arrayWithObject:newController] direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil]; |
</code=objc> | </code=objc> | ||
+ | Es '''muss''' ''animated:NO'' gesetzt werden, sonst funktioniert es auf Grund eines Bugs nicht. | ||
==Löschen von Seiten== | ==Löschen von Seiten== |
Version vom 20. Juli 2014, 20:38 Uhr
Hinzufügen von Seiten
<code=objc> UIViewController* newController = [UIViewController new]; [pageviewcontroller setViewControllers:[NSArray arrayWithObject:newController] direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil]; </code=objc> Es muss animated:NO gesetzt werden, sonst funktioniert es auf Grund eines Bugs nicht.
Löschen von Seiten
<code=objc> [pageviewcontroller setViewControllers:[NSArray arrayWithObject:controllerToShow] direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil]; </code=objc> Es muss animated:NO gesetzt werden, sonst funktioniert es auf Grund eines Bugs nicht.