I have a UInt16 variable that I would like to pass to a legacy function that requires an NSNumber.
If I try:
var castAsNSNumber : NSNumber = myUInt16
I get a compiler error 'UInt16' is not convertible to 'NSNumber'
How can I recast this as an NSNumber?
var castAsNSNumber = NSNumber(unsignedShort: myUInt16)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With