Swiftのclass varを利用するサンプルコード

コード下記:
struct SomeStructure {
static var storedTypeProperty = “Some value."
static var computedTypeProperty: Int {
// return an Int value here
}
}
enum SomeEnumeration {
static var storedTypeProperty = “Some value."
static var computedTypeProperty: Int {
// return an Int value here
}
}
class SomeClass {
class var computedTypeProperty: Int {
// return an Int value here
}
}

IOS

Posted by arkgame