UIViewController
extension to present view / view controller as bottom-half modal.
pod 'SemiModalViewController'
dependencies: [
.Package(url: "https://github.com/muyexi/SemiModalViewController.git", majorVersion: 0)
]
Present a view controller:
let options = [
SemiModalOption.pushParentBack: true
]
let controller = UIViewController()
controller.view.height = 200
controller.view.backgroundColor = UIColor.redColor()
presentSemiViewController(controller, options: options, completion: {
print("Completed!")
}, dismissBlock: {
print("Dismissed!")
})
Or view:
let view = UIView(frame: UIScreen.mainScreen().bounds)
view.height = 300
view.backgroundColor = UIColor.redColor()
presentSemiView(view, options: options) {
print("Completed!")
}
Dismiss a presented view / view controller:
dismissSemiModalView()
Default options:
SemiModalOption.traverseParentHierarchy : true,
SemiModalOption.pushParentBack : false,
SemiModalOption.animationDuration : 0.5,
SemiModalOption.parentAlpha : 0.5,
SemiModalOption.parentScale : 0.8,
SemiModalOption.shadowOpacity : 0.5,
SemiModalOption.transitionStyle : .slideUp,
SemiModalOption.disableCancel : true
SemiModalViewController is based on KNSemiModalViewController.
SemiModalViewController is released under the MIT license. See LICENSE for details.