SecureDisplayView
public final class SecureDisplayView : UIView
Secure display view preventing leaking of content
-
Will protect the provided view.
Declaration
Swift
public static func secure(_ view: UIView, acceptsInput: Bool = false) -> SecureDisplayView
-
Undocumented
Declaration
Swift
public override var subviews: [UIView] { get } -
Undocumented
Declaration
Swift
public override var inputView: UIView? { get } -
Undocumented
Declaration
Swift
public override var inputViewController: UIInputViewController? { get } -
Undocumented
Declaration
Swift
public override var textInputMode: UITextInputMode? { get } -
Undocumented
Declaration
Swift
public override var accessibilityLabel: String? { get set } -
Undocumented
Declaration
Swift
public override var accessibilityValue: String? { get set } -
Undocumented
Declaration
Swift
public override var accessibilityHint: String? { get set } -
Undocumented
Declaration
Swift
public override var isAccessibilityElement: Bool { get set }
-
Undocumented
Declaration
Swift
public override func reloadInputViews() -
Undocumented
Declaration
Swift
public override func insertSubview(_ view: UIView, at index: Int) -
Undocumented
Declaration
Swift
public override func exchangeSubview(at index1: Int, withSubviewAt index2: Int) -
Undocumented
Declaration
Swift
public override func addSubview(_ view: UIView) -
Undocumented
Declaration
Swift
public override func insertSubview(_ view: UIView, belowSubview siblingSubview: UIView) -
Undocumented
Declaration
Swift
public override func insertSubview(_ view: UIView, aboveSubview siblingSubview: UIView) -
Undocumented
Declaration
Swift
public override func bringSubviewToFront(_ view: UIView) -
Undocumented
Declaration
Swift
public override func sendSubviewToBack(_ view: UIView) -
Undocumented
Declaration
Swift
public override func didAddSubview(_ subview: UIView) -
Undocumented
Declaration
Swift
public override func willRemoveSubview(_ subview: UIView) -
Undocumented
Declaration
Swift
public override func layoutSubviews() -
Undocumented
Declaration
Swift
public override func systemLayoutSizeFitting(_ targetSize: CGSize) -> CGSize -
Undocumented
Declaration
Swift
public override func systemLayoutSizeFitting(_ targetSize: CGSize, withHorizontalFittingPriority horizontalFittingPriority: UILayoutPriority, verticalFittingPriority: UILayoutPriority) -> CGSize
-
Create SecureDisplayView protecting the provided view.
Declaration
Swift
public convenience init(secure subview: UIView, acceptsInput: Bool = false)
View on GitHub
SecureDisplayView