LMDropdownView is a simple dropdown view inspired by Tappy.
- Dropdown view with blur+transform3D effect.
- Using keyframe animation from Core Animation.
- You can easily change the menu content view.
- iOS 7.0 or higher
- ARC
- Drag the
LMDropdownView
folder into your project. - Add
#include "LMDropdownView.h"
to the top of classes that will use it.
You can easily integrate the LMDropdownView with a few lines of code. For an example usage look at the code below.
LMDropdownView *dropdownView = [[LMDropdownView alloc] init];
dropdownView.menuContentView = self.menuTableView;
[dropdownView showInView:self.view withFrame:self.view.bounds];
See sample Xcode project in /LMDropdownViewDemo
LMDropdownView is licensed under the terms of the MIT License.