Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NSNumber encoding #75

Open
makleso6 opened this issue Jan 12, 2023 · 0 comments
Open

NSNumber encoding #75

makleso6 opened this issue Jan 12, 2023 · 0 comments

Comments

@makleso6
Copy link

Hi! I'll try to encode NSNumber with value 1673520803 but in result I see -6493. It seams there is a bug when encoding NSNumber in

case "i": try container.encode(nsnumber.int16Value)

According documentation objCType "I" is An int
https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtTypeEncodings.html
I think in this case should use
case "i": try container.encode(nsnumber.intValue)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant