Swift,枚举

Posted Nothing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift,枚举相关的知识,希望对你有一定的参考价值。

枚举类型判断

1、设置并利用枚举

enum Weacher{
  case a
  case b
  case c
}
var d=Weacher.b
switch d{
  case .a:
  print("a")
  case .b:
  print("b")  //b
  default:
  print("nil")
}

2、利用元组

enum Weacher{
	case a(Int,String)
	case b(Int,String)
	case c(Int,String)
}
var d=Weacher.b(100,"你好")
switch d{
	case .a(let num,let Str):
	print("a的有\(num)和\(Str)")
	case .b(let num,let Str):
	print("b的有\(num)和\(Str)")  //b的有100和你好
	default:
	print("nil")
}

 

以上是关于Swift,枚举的主要内容,如果未能解决你的问题,请参考以下文章

如何将这个 Objective-C 代码片段写入 Swift?

如何使用 Swift 使用此代码片段为 iOS 应用程序初始化 SDK?

如何从 swift 代码中获得有用的 objc 枚举打印输出?

Swift-2.8枚举

Swift:使用符合相同协议的嵌套枚举案例的代码较少

Swift新async/await并发中利用Task防止指定代码片段执行的数据竞争(Data Race)问题