So I have an NSArray \"myArray\" with NSNumbers and NSStrings. I need them in another UIView so i go like this:
NSArray
NSNumber
NSString
UIView
In Swift 3.0
let number:NSNumber = 25 let strValue = String(describing: number as NSNumber) print("As String => \(strValue)")
We can get the number value in String.