FUIContentCopyable

public protocol FUIContentCopyable : AnyObject

This protocol defines if the content is copyable to the UIPasteboard or not.

The conforming class is usually a UIView and the content in the view to be copyable depends on the implementation.

  • This property indicates if the content is copyable or not.

    If the content is copyable, developer can set this property to enable or disable the copyable feature. If the content is not copyable, setting this property to true has no effect.

    Declaration

    Swift

    var isContentCopyable: Bool { get set }