Português (Portuguese)
Appearance
Português (Portuguese)
Appearance
ENUM
CompatibleXcodeVersions Contents
allexact(_:)upToNextMajor(_:)upToNextMinor(_:)list(_:)init(arrayLiteral:)init(arrayLiteral:)init(stringLiteral:)public enum CompatibleXcodeVersions: ExpressibleByArrayLiteral, ExpressibleByStringInterpolation, Codable, Equatable, SendableOptions of compatibles Xcode versions.
all case allThe project supports all Xcode versions.
exact(_:) case exact(Version)The project supports only a specific Xcode version.
upToNextMajor(_:) case upToNextMajor(Version)The project supports all Xcode versions from the specified version up to but not including the next major version.
upToNextMinor(_:) case upToNextMinor(Version)The project supports all Xcode versions from the specified version up to but not including the next minor version.
list(_:) case list([CompatibleXcodeVersions])List of versions that are supported by the project.
init(arrayLiteral:) public init(arrayLiteral elements: [CompatibleXcodeVersions])init(arrayLiteral:) public init(arrayLiteral elements: CompatibleXcodeVersions...)init(stringLiteral:) public init(stringLiteral value: String)| Name | Description |
|---|---|
| value | The value of the new instance. |