标签:
enum Direction {
case North
case East
case West
case South
}
也可以使用一个case
enum Direct {
case North, East, South
}
var dirct = Direction.East
dirct = .West
可以使用枚举存储任何相关指
enum PersonInfo {
case Age(Int)
case Name(String)
}
var person = PersonInfo.Name("ttf")
switch person {
case .Age(let age)://获得这个值
print("person‘s age is \(age)")
case .Name(let name):
print("person‘name is \(name)")
}
/**
以字符为初始值的枚举
*/
enum DirWithChar: Character {
case North = "\t"
case West = "\n"
case East = "\0"
case South = "\r"
}
/**
以Int为初始值的枚举
*/
enum DirWithInt: Int {
case North = 0
case West
case East
case South
}
获得初始值
let dirValue = DirWithInt.East.rawValue
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/ttf1993/article/details/46730165