In my app, i have some text fields for..
- Phone number
- Date
- Currency
I want to get the input value as NSString from the text field, and want to make sure that it satisfies the required scenario. That is, the phone number field should contains digits and + symbol only, Date in the form of dd/mm/yyyy, Currency may contain $ symbol and email should satisfy a valid email format.
How can i do this in Objective C?