Search code examples
swifttype-alias

Define a typealias for the whole project


In which file can I define a typealias that works in the whole project, etc.

typealias S = String

Solution

  • the typealias works the same way as variables. If you want to be global put it outside the class scope at any file.