Hossein Amini
09/04/2025, 2:27 PMFrançois
09/04/2025, 2:40 PMHossein Amini
09/04/2025, 3:03 PMHossein Amini
09/04/2025, 3:04 PMextraOpts = listOf("-Xforeign-exception-mode", "objc-wrap")
in the pod() block, but as we don't use any 3rd party libraries I'm not sure how I can use this workaroundAndrei Salavei
09/05/2025, 9:02 AMNSDecimalNumberOverflowException
fires on the NSDecimal overflow - it looks like the number inside your string is too big. Maybe you need another type, line NSNumber.
Also, using try/catch
in Objective-C is not the preferred way of work anyway.
I'd recommend either check the string before conversion or use another type.Hossein Amini
09/05/2025, 9:14 AMAndrei Salavei
09/05/2025, 9:58 AMHossein Amini
09/05/2025, 12:28 PM