LLSlideMenu alternatives and similar libraries
Based on the "Menu" category.
Alternatively, view LLSlideMenu alternatives based on common mentions on social networks and blogs.
-
PageMenu
A paging menu controller built from other view controllers placed inside a scroll view (like Spotify, Windows Phone, Instagram) -
SideMenu
Simple side/slide menu control for iOS, no code necessary! Lots of customization. Add it to your project in 5 minutes or less. -
ViewDeck
An implementation of the sliding menu found in various iOS apps. -
SlideMenuControllerSwift
iOS Slide Menu View based on Google+, iQON, Feedly, Ameba iOS app. It is written in pure swift. -
Persei
Animated top menu for UITableView / UICollectionView / UIScrollView written in Swift -
CircleMenu
:octocat: ⭕️ CircleMenu is a simple, elegant UI menu with a circular layout and material design animations. Swift UI library made by @Ramotion -
PagingMenuController
Paging view controller with customizable menu in Swift. -
GuillotineMenu
Our Guillotine Menu Transitioning Animation implemented in Swift reminds a bit of a notorious killing machine. -
BTNavigationDropdownMenu
The elegant yet functional dropdown menu, written in Swift, appears underneath the navigation bar to display a list of defined items when a user clicks on the navigation title. -
ENSwiftSideMenu
A simple side menu for iOS written in Swift. -
Context-Menu.iOS
You can easily add awesome animated context menu to your app. -
SideMenuController
A side menu controller written in Swift for iOS -
Panels
Panels is a framework to easily add sliding panels to your application -
PagingKit
PagingKit provides customizable menu UI. It has more flexible layout and design than the other libraries. -
IGLDropDownMenu
An iOS drop down menu with pretty animation and easy to customize. -
YNDropDownMenu
✨ Awesome Dropdown menu for iOS with Swift 5.0 -
SwipeMenuViewController
Swipable tab and menu View and ViewController. -
PopMenu
PopMenu is pop animation menu inspired by Sina weibo / NetEase app. -
FlowingMenu
Interactive view transition to display menus with flowing and bouncing effects in Swift -
SPLarkController
Custom transition between controllers. Settings controller for your iOS app. -
InteractiveSideMenu
iOS Interactive Side Menu written in Swift. -
MKDropdownMenu
🔻 Dropdown Menu for iOS with many customizable parameters to suit any needs -
ExpandingMenu
ExpandingMenu is menu button for iOS written in Swift. -
CategorySliderView
slider view for choosing categories. add any UIView type as category item view. Fully customisable -
AKSideMenu
Beautiful iOS side menu library with parallax effect. Written in Swift -
DropDownMenuKit
UIKit drop down menu, simple yet flexible and written in Swift -
RadialMenu
RadialMenu is a custom control for providing a touch context menu (like iMessage recording in iOS 8) built with Swift & POP -
DTPagerController
A fully customizable container view controller to display a set of ViewControllers in a horizontal scroll view. Written in Swift. -
VLDContextSheet
Context menu similar to the one in the Pinterest iOS app -
KWDrawerController
Drawer view controller that easy to use! -
RHSideButtons
Library provides easy to implement variation of Android (Material Design) Floating Action Button for iOS. You can use it as your app small side menu. 🌶
Appwrite - The open-source backend cloud platform
* 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 LLSlideMenu or a related project?
README
LLSlideMenu
This is a spring slide menu for iOS apps 一个弹性侧滑菜单 弹性动画原理借鉴该项目中阻尼函数实现
Preview 预览
Installation 安装
- pod
1.pod 'LLSlideMenu', '~> 1.0.6' 2.pod install // 若获取失败请重新 pod setup 3.#import "LLSlideMenu.h"
- Common
1.Add "LLSlideMenu" files to your Project // 直接导入“LLSlideMenu”文件夹到项目中 2.#import "LLSlideMenu.h"
Usage 用法
- Init 初始化
LLSlideMune *slideMenu = [[LLSlideMune alloc] init]; [self.view addSubview:slideMenu];
- Base Property 基本属性 ``` // 设置菜单宽度 menu width _slideMenu.ll_menuWidth = 200.f;
// 设置菜单背景色 background color _slideMenu.ll_menuBackgroundColor = [UIColor redColor];
// 设置菜单背景图片 background image _slideMenu.ll_menuBackgroundImage = [UIImage imageNamed:@"image"];
// 背景色或背景图片设置一个即可 background image and color select one
* Open or Close 打开或关闭
[_slideMenu ll_openSlideMenu]; // 打开 open [_slideMenu ll_closeSlideMenu]; // 关闭 close
* GestureRecognizer 手势监听
_slideMenu.ll_distance = 100.f; // 拉伸距离 pulling distance
* Spring and Frames 弹力和关键帧设置(可控制弹性效果和时间)
_slideMenu.ll_springDamping = 20; // 阻力 _slideMenu.ll_springVelocity = 15; // 速度 _slideMenu.ll_springFramesNum = 60; // 关键帧数量
## Requirements 版本要求
IOS 6.0 Above
## License
LLSlideMenu is provided under the MIT license. See LICENSE file for details.
*Note that all licence references and agreements mentioned in the LLSlideMenu README section above
are relevant to that project's source code only.