-
Conforming types must provide a getter for the length of the string.
Date
February 17, 2016Declaration
Swift
var length: Int { get }
Return Value
An
Int
representing the “length” of the string (understood that this can differ based on encoding). -
Conforming types must provide a method to get the full range of the string.
Date
February 17, 2016Declaration
Swift
var range: NSRange { get }
Return Value
An
NSRange
representing the entire string. -
Undocumented
Declaration
Swift
var stringByLowercasingFirstLetter: String { get }
-
Undocumented
Declaration
Swift
var stringByUppercasingFirstLetter: String { get }
-
Undocumented
Declaration
Swift
var stringByReplacingSpacesWithDashes: String { get }
-
Undocumented
Declaration
Swift
func stringByConverting(toNamingFormat naming: VariableNamingFormat) -> String