MEVFloatingButton alternatives and similar libraries
Based on the "Table View" category.
Alternatively, view MEVFloatingButton alternatives based on common mentions on social networks and blogs.
-
DZNEmptyDataSet
DISCONTINUED. A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display -
folding-cell
:octocat: 📃 FoldingCell is an expanding content cell with animation made by @Ramotion -
SWTableViewCell
An easy-to-use UITableViewCell subclass that implements a swippable content view which exposes utility buttons (similar to iOS 7 Mail Application) -
MGSwipeTableCell
An easy to use UITableViewCell subclass that allows to display swippable buttons with a variety of transitions. -
CSStickyHeaderFlowLayout
UICollectionView replacement of UITableView. Do even more like Parallax Header, Sticky Section Header. Made for iOS 7. -
preview-transition
:octocat: PreviewTransition is a simple preview gallery UI controller with animated tranisitions. Swift UI library made by @Ramotion -
ParallaxTableViewHeader
Parallax scrolling effect on UITableView header view when a tableView is scrolled -
ZYThumbnailTableView
a TableView have thumbnail cell only, and you can use gesture let it expands other expansionView, all diy -
AEAccordion
Simple and lightweight UITableViewController with accordion effect (expand / collapse cells) -
VBPiledView
Simple and beautiful stacked UIView to use as a replacement for an UITableView, UIImageView or as a menu -
CollapsableTableKit
DISCONTINUED. A kit for building tableviews with a collapsable animation, for each section.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of MEVFloatingButton or a related project?
README
MEVFloatingButton
An iOS drop-in UITableView, UICollectionView, UIScrollView superclass category for showing a customizable floating button on top of it.
Features
- Multiple animation types.
- Different display modes.
- Different screen positions.
- Customizable button icon.
- Multiple delegate methods.
Demo
Usage
To run the example project, clone the repo, and run pod install
from the Example directory first.
Requirements
Requires iOS SDK version > 8.0
Installation
CocoaPods
MEVFloatingButton is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'MEVFloatingButton'
Manual
Simply include UIScrollView+FloatingButton.h
and UIScrollView+FloatingButton.m
from /Pod/Classes/
folder in your App’s Xcode project.
How to use
Step 1
#import "UIScrollView+FloatingButton.h"
Step 2
Add datasource and delegate methods.
@interface ViewController () <MEVFloatingButtonDelegate>
#pragma mark - MEScrollToTopDelegate Methods
- (void)floatingButton:(UIScrollView *)scrollView didTapButton:(UIButton *)button;
- (void)floatingButtonWillAppear:(UIScrollView *)scrollView;
- (void)floatingButtonDidAppear:(UIScrollView *)scrollView;
- (void)floatingButtonWillDisappear:(UIScrollView *)scrollView;
- (void)floatingButtonDidDisappear:(UIScrollView *)scrollView;
Step 3
Create a MEVFloatingButton
object.
MEVFloatingButton *button = [[MEVFloatingButton alloc] init];
button.animationType = MEVFloatingButtonAnimationFromBottom;
button.displayMode = MEVFloatingButtonDisplayModeWhenScrolling;
button.position = MEVFloatingButtonPositionBottomCenter;
button.image = [UIImage imageNamed:@"Icon0"];
button.imageColor = [UIColor groupTableViewBackgroundColor];
button.backgroundColor = [UIColor darkGrayColor];
button.outlineColor = [UIColor darkGrayColor];
button.outlineWidth = 0.0f;
button.imagePadding = 20.0f;
button.horizontalOffset = 20.0f;
button.verticalOffset = -30.0f;
button.rounded = YES;
button.hideWhenScrollToTop = YES;
Set the object to your UIScrollView/UITableView/UICollectionView.
[self.tableView setFloatingButtonView:button];
Set the delegate.
[self.tableView setFloatingButtonDelegate:self]
Sample Project
For more info check the Examples project. Everything is there.
Change Log
See Changelog.md
Author
Manuel Escrig Ventura, @manuelescrig
Credits
Icons made by Elegant Themes from www.flaticon.com
License
MEVFloatingButton is available under the MIT license. See License.md
*Note that all licence references and agreements mentioned in the MEVFloatingButton README section above
are relevant to that project's source code only.