I’m working on an application that will support both english and arabic languages. The application takes numeric input for use. In arabic language, the numeric characters are different! So, what’s the best way to validate numeric input (amount, percentage, number) in such a situation?
I’m working on an application that will support both english and arabic languages. The
Share
I ended up using NSNumberFormatter to check for the validity of the input, instead of using following methods:
OR