본문 바로가기
Mobile/Swift

enum

by 꼰대코더 2024. 2. 7.

선언

enum Weekday {
      case monday
      case tuesday
      case wednesday
      case thursday
      case friday
}

or

enum Weekday {     
      case monday, tuesday, wednesday, thursday, friday
}

 

변수

var day = Weekday.monday

 

'Mobile > Swift' 카테고리의 다른 글

switch  (0) 2024.02.14
String  (0) 2024.02.08
Dictionary  (1) 2024.02.07
Array  (0) 2024.02.07
ForEach  (0) 2024.02.07