SPLarkController alternatives and similar libraries
Based on the "Menu" category.
Alternatively, view SPLarkController 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. -
SlideMenuControllerSwift
iOS Slide Menu View based on Google+, iQON, Feedly, Ameba iOS app. It is written in pure swift. -
CircleMenu
:octocat: ⭕️ CircleMenu is a simple, elegant UI menu with a circular layout and material design animations. Swift UI library made by @Ramotion -
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. -
PagingKit
PagingKit provides customizable menu UI. It has more flexible layout and design than the other libraries. -
CategorySliderView
slider view for choosing categories. add any UIView type as category item view. Fully customisable -
DTPagerController
A fully customizable container view controller to display a set of ViewControllers in a horizontal scroll view. 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 -
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. 🌶
CodeRabbit: AI Code Reviews for Developers

* 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 SPLarkController or a related project?
README
SPLarkController
About
Transition between controllers to top. You can change animatable height after presentation controller.
For presentation and dismissing using custom transition delegate.
You can set any content to bottom controller, like buttons or even collection as in preview. For implement settings as in preiew, see section Settings Controller.
If you like the project, don't forget to put star ★
and follow me on GitHub:
Navigate
Requirements
Swift 4.2
& 5.0
. Ready for use on iOS 10+
Installation
CocoaPods:
CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate SPLarkController
into your Xcode project using CocoaPods, specify it in your Podfile
:
pod 'SPLarkController'
Manually
If you prefer not to use any of the aforementioned dependency managers, you can integrate SPLarkController
into your project manually. Put Source/SPLarkController
folder in your Xcode project. Make sure to enable Copy items if needed
and Create groups
.
Usage
Presenting
Create controller and call func presentAsLark
:
import UIKit
import SPLarkController
class ViewController: UIViewController {
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
let controller = UIViewController()
self.presentAsLark(controller)
}
}
If you want customize controller (set custom height and other), create controller and set transitioningDelegate
to SPLarkTransitioningDelegate
object. Use present
or dismiss
functions:
let controller = UIViewController()
let transitionDelegate = SPLarkTransitioningDelegate()
controller.transitioningDelegate = transitionDelegate
controller.modalPresentationStyle = .custom
controller.modalPresentationCapturesStatusBarAppearance = true
self.present(controller, animated: true, completion: nil)
Please, do not init SPLarkTransitioningDelegate
like this:
controller.transitioningDelegate = SPLarkTransitioningDelegate()
You will get an error about weak property.
Height
Parameter customHeight
sets custom height for modal controller. Default is nil
:
transitionDelegate.customHeight = 350
Change Height
For change height after presenting use with code:
if let presentationController = self.presentationController as? SPLarkPresentationController {
presentationController.updateHeight(600)
}
You can see how it work in Example
folder. I am plase ready-use project.
Settings Controller
You can simple implement settings controller as in preview. You need extend from SPLarkSettingsController
and implement all methods for it. See class for more details.
class SettingsController: SPLarkSettingsController {}
Snapshots
The project uses a snapshot of the screen in order to avoid compatibility and customisation issues. Before controller presentation, a snapshot of the parent view is made, and size and position are changed for the snapshot. Sometimes you will need to update the screenshot of the parent view, for that use static func:
SPLarkController.updatePresentingController(modal: controller)
and pass the controller, which is modal and uses SPLarkTransitioningDelegate
Modal presentation of other controller
If you want to present modal controller on SPLarkController, please set:
controller.modalPresentationStyle = .custom
It’s needed for correct presentation and dismissal of all modal controllers.
Other Projects
SPPermissions
Allow request permissions with native dialog UI and interactive animations. Also you can request permissions without dialog. Check state any permission. You can start using this project with just two lines of code and easy customisation.
SPAlert
It is popup from Apple Music & Feedback in AppStore. Contains Done & Heart presets. Done present with draw path animation. I clone Apple's alerts as much as possible. You can find this alerts in AppStore after feedback, after added song to library in Apple Music. I am also add alert without icon, as simple message.
SPDiffable
Apple's diffable API requerid models for each object type. If you want use it in many place, you pass many time to implemenet and get over duplicates codes. This project help you do it elegant with shared models and special cell providers for one-usage models.
Russian Community
Присоединяйтесь в телеграм канал Код Воробья, там найдете заметки о iOS разработке и дизайне. Большие туториалы выклыдываю на YouTube.