HiddenStatus
public enum HiddenStatus : Int, Codable
The set of available hidden status types.
case notHidden = -1
case disabled = 0
case hidden = 1
-
The title is not hidden.
Declaration
Swift
case notHidden = -1
-
The title can’t be hidden or unhidden.
Declaration
Swift
case disabled = 0
-
The title is hidden.
Declaration
Swift
case hidden = 1
-
Initializes an instance of
HiddenStatus
with the given bool value.If
nil
is given, then an instance of.disabled
is initialized.Declaration
Swift
public init(_ bool: Bool?)
Parameters
bool
The boolean value used to initialize an instance of
HiddenStatus
.