Skip to main content

Static properties and methods

Less than 1 minuteSwiftiOSArticle(s)bloghackingwithswift.comcrashcourseswiftxcodeappstoreios

Static properties and methods 관련

Hacking with iOS – learn to code iPhone and iPad apps with free Swift tutorials

Learn Swift coding for iOS with these free tutorials – learn Swift, iOS, and Xcode

Static properties and methods | Hacking with iOS

Static properties and methods

Swift lets you create properties and methods that belong to a type, rather than to instances of a type. This is helpful for organizing your data meaningfully by storing shared data.

Swift calls these shared properties “static properties”, and you create one just by using the static keyword. Once that's done, you access the property by using the full name of the type. Here's a simple example:

struct TaylorFan {
    static var favoriteSong = "Look What You Made Me Do"

    var name: String
    var age: Int
}

let fan = TaylorFan(name: "James", age: 25)
print(TaylorFan.favoriteSong)

So, a Taylor Swift fan has a name and age that belongs to them, but they all have the same favorite song.

Because static methods belong to the struct itself rather than to instances of that struct, you can't use it to access any non-static properties from the struct.


이찬희 (MarkiiimarK)
Never Stop Learning.