I have a UITextField setup where user inputs currency. I want to apply formatting to the currency on the fly. eg. if user has entered 111 it should appear as 111. When user enters one more digit, app should be able to add , automatically and value should look like 1,111
I can format the NSString by converting it into NSNumber and then using NSNumberFormatter. However, I want to do it as user is typing and I need to know how to capture that event.