A UI framework that enables panels on iOS.
Go to file
2018-05-30 22:02:07 +02:00
docs Fix typos 2017-12-14 20:30:10 +01:00
Example Add third panel to example 2018-05-28 22:17:07 +02:00
PanelKit Update isFloating check 2018-05-30 22:02:07 +02:00
PanelKit Test Host Fixed unit test orientation to landscape 2017-03-10 18:52:23 +01:00
PanelKit UI Test Host Fix tests for slow MKMapView in Xcode 9.0's simulator, disable bogus UI test, fix text view weak reference 2017-09-15 21:23:53 +02:00
PanelKit UI Tests quick fail on iPhone 2018-01-03 23:34:26 -06:00
PanelKit.xcodeproj Update to Xcode 9.3 & Swift 4.1 2018-04-10 21:03:44 +02:00
PanelKit.xcworkspace Update to Xcode 9.3 & Swift 4.1 2018-04-10 21:03:44 +02:00
PanelKitTests Fix test 2018-05-29 21:30:18 +02:00
readme-resources Added example gif to readme 2017-02-20 22:35:52 +01:00
showcase-resources Added showcase 2017-03-20 22:08:09 +01:00
.codeclimate.yml Update Tailor config 2017-12-02 17:03:18 +01:00
.codecov.yml [Codecov] Ignore PanelKit UI Test Host 2017-03-11 15:59:28 +01:00
.editorconfig Add .editorconfig 2017-06-20 14:47:14 +02:00
.gitattributes Added .gitattributes 2017-02-21 00:16:35 +01:00
.gitignore Added gitignore 2017-02-11 16:55:21 +01:00
.swift-version Update to Xcode 9.3 & Swift 4.1 2018-04-10 21:03:44 +02:00
.tailor.yml Update Tailor config 2017-12-02 17:03:18 +01:00
.travis.yml Update to Xcode 9.3 & Swift 4.1 2018-04-10 21:03:44 +02:00
CHANGELOG.md Update version to 2.0.1 2017-12-14 20:42:34 +01:00
LICENSE Updated license 2017-02-20 22:42:55 +01:00
PanelKit.podspec Update version to 2.0.1 2017-12-14 20:42:34 +01:00
README.md Update to Xcode 9.3 & Swift 4.1 2018-04-10 21:03:44 +02:00
SHOWCASE.md Add Terminal to showcase 2018-01-07 20:39:29 +01:00

PanelKit for iOS

Build Status Codecov
Swift PodVersion Carthage Compatible Platform: iOS
Twitter Donate via PayPal

PanelKit for iOS
Applications using PanelKit can be seen in the showcase.

About

PanelKit is a UI framework that enables panels on iOS. A panel can be presented in the following ways:

  • Modally
  • As a popover
  • Floating (drag the panel around)
  • Pinned (either left or right)

This framework does all the heavy lifting for dragging panels, pinning them and even moving/resizing them when a keyboard is shown/dismissed.

Implementing

A lot of effort has gone into making the API simple for a basic implementation, yet very customizable if needed. Since PanelKit is protocol based, you don't need to subclass anything in order to use it. There a two basic principles PanelKit entails: panels and a PanelManager.

Panels

A panel is created using the PanelViewController initializer, which expects a UIViewController, PanelContentDelegate and PanelManager.

PanelContentDelegate

PanelContentDelegate is a protocol that defines the appearance of a panel. Typically the PanelContentDelegate protocol is implemented for each panel on its UIViewController.

Example:

class MyPanelContentViewController: UIViewController, PanelContentDelegate {
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        self.title = "Panel title"	
    }
    
    var preferredPanelContentSize: CGSize {
        return CGSize(width: 320, height: 500)
    }	
}

A panel is explicitly (without your action) shown in a UINavigationController, but the top bar can be hidden or styled as with any UINavigationController.

PanelManager

PanelManager is a protocol that in its most basic form expects the following:

// The view in which the panels may be dragged around
var panelContentWrapperView: UIView {
    return contentWrapperView
}

// The content view, which will be moved/resized when panels pin
var panelContentView: UIView {
    return contentView
}

// An array of PanelViewController objects
var panels: [PanelViewController] {
    return []
}

Typically the PanelManager protocol is implemented on a UIViewController.

Advanced features

PanelKit has some advanced opt-in features:

Installation

CocoaPods

To install, add the following line to your Podfile:

pod 'PanelKit', '~> 2.0'

Carthage

To install, add the following line to your Cartfile:

github "louisdh/panelkit" ~> 2.0

Run carthage update to build the framework and drag the built PanelKit.framework into your Xcode project.

Requirements

  • iOS 10.0+
  • Xcode 9.0+

Todo

Long term:

  • Top/down pinning

License

This project is available under the MIT license. See the LICENSE file for more info.