如果我在Swift中需要自定义类型,可以typedef,该怎么办?(类似于闭包语法typedef)
typedef
使用关键字typealias代替typedef
typealias
typealias CustomType = String var customString:CustomType = "Test String"