Skip to content

Enumerated Type

   

This is a sample code of how to write enum and enum.
Here, we created a class called “person” and registered Kabigon's name and hometown using enum.

import UIKit
enum Country {
case japan
case america
case kanada
case china
}
class person: NSObject {
var name:String!
var from:Country!
}
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let kabigon = person()
kabigon.name = "カビゴン"
kabigon.from = Country.america
switch kabigon.from {
case .japan:
print(kabigon.name + "は日本から来ました。")
case .america:
print(kabigon.name + "はアメリカから来ました。")
case .kanada:
print(kabigon.name + "はカナダから来ました。")
case .china:
print(kabigon.name + "は中国から来ました。")
default:
print("error")
}
}
}
view raw enum.swift hosted with ❤ by GitHub

  1. How to learn how to program iPhone apps
  2. Using UserDefaults to save parameters
  3. Selecting values using the UIPickerView
  4. Repeating at a certain time
  5. Create a collection view with custom layouts
  6. UDP communication in Swift and sending a string
  7. Removing @objc inference warnings when migrating from Swift3 to Swift4