When a UITextField receives focus, I want the text inside of it to be automatically selected so that anything the user types overwrites it. I've tried the following, but it doesn't work:
amountField.EditingDidBegin += (object sender, EventArgs e) =>
{
amountField.SelectAll(amountField);
};
Has anyone had luck doing this?