On 26-Jun-09, at 0:58 , Steve Fogel wrote:
You manipulate the text field's text property directly with methods like replaceOccurrencesOfString:withString: or insertString:atIndex: or deleteCharactersInRange:, and so on.


The methods you mention only work on mutable strings. I tried doing this:

- (BOOL)textField:(UITextField *)textField
        shouldChangeCharactersInRange:(NSRange)range
        replacementString:(NSString *)string
{       
        if( [string isEqualToString:@"C"] )
        {
                NSString *newString =
[textField.text stringByReplacingCharactersInRange:range withString:@"\u2192"];
                textField.text = newString;
                return NO;
        }
        return YES;
}

It gives me the character I want, where I want it. But then the cursor jumps to the end of the field.

Is there a way of re-positioning the cursor in a UITextField? Perhaps by manipulating a UITouch object?

dkj

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to