Hi all, My interface displays a text field bound to an NSNumber that I use internally as unsigned int. That NSNumber is actually saved with Core Data as Integer 16. However, the interface displays the number signed, meaning anything above 32.768 is actually shown to be negative.
I couldn't find a way to force my NSNumberFormatter to display unsigned numbers. Setting the minimum value to 0 also doesn't work, since internally it's gonna be positive anyway.
Could you help me display my 16-bit integer as an unsigned int between 0 and 65.535?
I am building a macOS app using Objective-C, macOS SDK 10.14 and Xcode 14.3.1.