Skip to content

Release version 1.1.0

Compare
Choose a tag to compare
@Friend-LGA Friend-LGA released this 29 Nov 17:04
· 5 commits to master since this release

Fixed bugs.

Now you can:

  • Setup every button individually
  • Setup much more parameters
  • Setup parameters for different orientations
  • Add plusButtonsView on any view and set observed scroll view, like you add plusButtonsView on this scroll view
    • plusButtonsView.observedScrollView = someScrollView;
  • Set cover color, to hide content, when buttons is showing
    • plusButtonsView.coverColor = [UIColor colorWithWhite:1.f alpha:0.7];
  • Show/Hide plusButtonsView depends of content size of scroll view (default is YES)
    • plusButtonsView.disableShowHideOnScrollIfContentSizeLessThenFrame = NO;
  • Hide buttons on scroll (default is NO)
    • plusButtonsView.hideButtonsOnScroll = YES;
  • Set animation speed for show/hide view and buttons (default is 0.3)
    • plusButtonsView.appearingAnimationSpeed = 0.5;
    • plusButtonsView.buttonsAppearingAnimationSpeed = 0.5;
  • And more