935b7d9e10
* Add 'FloatingPanelBackdropView. dismissalTapGestureRecognizer' * Enable tap on backdropview gesture recognizer only for the modal presentation
12 lines
315 B
Swift
12 lines
315 B
Swift
//
|
|
// Created by Shin Yamamoto on 2018/09/26.
|
|
// Copyright © 2018 Shin Yamamoto. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
/// A view that presents a backdrop interface behind a floating panel.
|
|
public class FloatingPanelBackdropView: UIView {
|
|
public var dismissalTapGestureRecognizer: UITapGestureRecognizer!
|
|
}
|