For a text view, I am trying to capture the backspace/delete key press. For this I have written the below given code in the textview shouldChange method but oot able to capture the key
What other way is there to capture a backspace or delete key press
}
What other way is there to capture a backspace or delete key press
}
Code:
if ([text isEqualToString:@"\b"]) {
return YES;