I'm writing an iPhone app that has a textField for the user to enter a "dollar amount" like 12.34
None of the SDK keyboards seem to have a decimal point. (OR do they?) So I decided to just let the user type in "1234" and I would add the decimal point for him... as he types.... by using EDITING CHANGED.
But each time my code adds the decimal point... it generates ANOTHER "EDITING CHANGED" event... and causes an endless loop.
Or is there an easier way to do all of the above?