views:

1424

answers:

3

Hello, I've got a few UITextFields in an UITableView. The user should be able to insert only numbers and dots. To do this, I set the keyboard type to UIKeyboardTypeNumberPad and added a '.'-Button at the bottom left corner. Every time the button is pressed, a function is called. This function should insert a dot at the current cursor position, but this is the problem: UITextField hasn't got an selectedRange property, so I'm not able to get the current cursor position. Does anybody know how to solve this problem or is there any other way to do this? Thanks.

A: 

Read the value of the text field as a string when your button is pressed. Edit the string and then set the value of the field to the new string.

yeah but the point is that he doesn't know how he wants to modify the string. he wants to insert a dot where the cursor is, but he doesn't know where the cursor is
newacct
This wouldn't insert a dot at the current cursor position, just at the end of the string.
WetFish
A: 

If you're looking to create text fields that allow you to enter decimal places may I suggest that you rather fix the decimal point to a certain precision and allow the user to enter numbers as follows:

Assuming your precision is 2 decimal points:

start: value is 0.00
user enters 1: value is 0.01
user enters 2: value is 0.12
user enters 3: value is 1.23
user enters 4: value is 12.34

See http://stackoverflow.com/questions/276382/best-way-to-enter-numeric-values-with-decimal-points for a similar solution for currency.

It is by far a more simple solution than creating a custom keyboard and dealing with all the nuances that that approach presents. If, however, you need variable length precision then that approach might suite you better.

rein
Thanks. I think this is the best way.
WetFish
+4  A: 

I've finally found a solution for this problem! You can put the text you need inserted into the system pasteboard and then paste it at the current cursor position:

[myTextField paste:self]

I found the solution on this person's blog:
http://dev.ragfield.com/2009/09/insert-text-at-current-cursor-location.html

The paste functionality is OS V3.0 specific, but I've tested it and it works fine for me with a custom keyboard.

Dan J
This is what the question actually asked. And, and excellent solution.
norskben
This is a great solution. Though, it might be worth it to mention here that you need to save the user's pasteboard contents before putting your contents onto the pasteboard, and then restore the user's contents afterwards. This way they have no idea that you used the pasteboard and your code is a good citizen by not clobbering the contents of the user's pasteboard.
Jasarien