I am trying to convert UInt64.max
to a String
.
A line such as:
var str: String = UInt64.max
Results in an error in XCode that:
'UInt64' is not convertible to 'String'
As another example, a line such as the following:
let strFromUInt: String = NSNumber(unsignedLongLong: UInt64.max)
Results in an error in XCode that:
'NSNumber' is not convertible to 'String'
Sorry if I'm missing anything here, I'm quite new to iOS development still. Thanks!