Skip to content

Releases: uias/Pageboy

1.2.1

19 Jun 08:45
Compare
Choose a tag to compare

Improvements to view hierarchy management.

Updated

  • The internal UIPageViewController is now inserted at the back of all subviews in the UIViewController.
    • The Z-Index will persist when changing navigationOrientation and other destructive updates.

1.2.0

18 Jun 16:28
Compare
Choose a tag to compare

Improvements to localization and other minor fixes.

Added

  • #67 Improved support for Right-To-Left languages to PageboyViewController.
  • parentPageboyViewController property to UIViewController to provide access to parent PageboyViewController from child view controllers within the page view controller.
  • #70 Success result to scrollToPage() function in PageboyViewController.
    • Returns whether the scroll was able to be successfully executed.

Fixed

  • #71 A potential error during layout with scroll positional updates.
    • By AlexZd.

1.1.2

14 Jun 08:53
Compare
Choose a tag to compare

Fixes to orientation support.

Fixed

  • Fixed issue with animated transitions when using .vertical navigationOrientation.
  • Add support for .vertical navigationOrientation to example app.
    • By Charles Molyneux.

1.1.1

12 Jun 13:54
Compare
Choose a tag to compare

Improvements to lifecycle management.

Updated

  • Updated project to use Swift 3.2 and compatibility with Xcode 9

Fixed

  • Fixed issue where it would be possible to cause an error by setting properties on PageboyViewController before the internal UIPageViewController was initialised.
  • Fixed issue where changing navigationOrientation would cause properties on PageboyViewController to not persist.

1.1.0

07 Jun 08:55
Compare
Choose a tag to compare

Custom transitioning support and minor fixes.

Added

  • #57 Added support for custom scroll transitions to PageboyViewController.
    • Available via the .transition (PageboyViewController.Transition) property.

Fixed

  • #61 Fixed AutoLayout issue with internal UIPageViewController when in-call status bar is visible.

1.0.9

29 May 16:59
Compare
Choose a tag to compare

Enhancements to PageboyViewController.

Added

  • Added delaysContentTouches property to PageboyViewController.

Updated

  • Minor improvements to example project.
  • Minor refactoring to PageboyViewController extensions.

1.0.8

17 May 19:40
Compare
Choose a tag to compare

Minor refactoring and improvements.

Updated

  • Refactored and restructured internal extensions of PageboyViewController.
  • A fresh coat of paint.

Fixed

  • Fixed a few UI issues with example project.

1.0.7

07 May 18:11
Compare
Choose a tag to compare

Some small improvements to delegation.

Added

  • isTracking property to PageboyViewController.
  • Default stub protocol implementations for PageboyViewControllerDelegate.

Updated

  • Updated scroll management to use isTracking for interaction detection.

1.0.6

26 Apr 19:26
Compare
Choose a tag to compare

Minor lifecycle tweaks.

Updated

  • Moved internal UIPageViewController initialisation to viewDidLoad from loadView.

1.0.5

22 Apr 16:30
Compare
Choose a tag to compare

Fixes to infinite scrolling behaviour.

Fixed

  • #44 Fix incorrect scrollToPage function behaviour when at the end of page ranges with infinite scrolling enabled.
    • .next used an incorrect animation when scrolling from the upper range to the lower range.
    • .previous failed to scroll to a page when scrolling from the lower range to the upper range.