CaptureSetting
public class CaptureSetting: Hashable, CustomStringConvertible
This class is base class for capture settings. Sub classes of this class are used to handle capture settings.
-
The name of a setting
Declaration
Swift
public let name: String
-
The value of a setting
Declaration
Swift
public var value: Value?
-
The valid settings that varies depending on the state and setting of the camera device
Declaration
Swift
public var availableSettings: [CaptureSetting]
-
Declaration
Swift
public var hashValue: Int
-
Declaration
Swift
public static func ==(lhs: CaptureSetting, rhs: CaptureSetting) -> Bool
-
Declaration
Swift
public var description: String
-
This class is base for value of capture settings.
See moreDeclaration
Swift
public class Value: Hashable, CustomStringConvertible