Re: [iPhone] NumberPad with the dot

2009-03-17 Thread Brian Slick
In searching for a similar solution myself, I've come across three possibilities: 1) Roll your own keyboard, as others have mentioned. 2) Overlay a decimal button onto the keyboard, like this: http://billabonger.net/blog/2009/01/add-a-decimal-to-uitextfield-number-pad-keyboard/ * - I have no i

Re: [iPhone] NumberPad with the dot

2009-03-17 Thread Jelle De Laender
Okay but then you haven't the possibility to show the marker? So the user cannot insert text? He can only remove the numbers from right to left and add numbers at the right side Not very comfortable... not other solution? edit: Now you said this, I saw the same behaviour in other applic

Re: [iPhone] NumberPad with the dot

2009-03-17 Thread Dave DeLong
You fake it. Have a non-editable textfield with a custom UILabel subclass on top of it. When the UILabel gets tapped, bring up your custom keyboard and put the typed text into the UILabel. Dave On Mar 17, 2009, at 4:19 PM, Jelle De Laender wrote: Hi I've create a UIView with some UIButt

Re: [iPhone] NumberPad with the dot

2009-03-17 Thread Jelle De Laender
Hi I've create a UIView with some UIButtons for a custom keypad. Now I've a problem to 'hide' the numberpad of Apple. When a user 'clicks/touches' the editfield, my UIView should be showed (setHidden:NO) and the textField should go in editing-modus, but without the numberPad of Apple. How

Re: [iPhone] NumberPad with the dot

2009-03-16 Thread Layton Duncan
We ran into this same problem when creating 'Convert' I didn't want to hack around with the existing keyboard, so we ended up implementing our own: http://www.polarbearfarm.com/convert/index.html Layton Duncan Polar Bear Farm http://www.polarbearfarm.com On 17/03/2009, at 11:57 AM, Jelle De