我需要运行这组代码:
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text {
在另一种方法(IBAction)中。
所以例如我需要像这样运行它:
[self performSelector:@selector(textView:shouldChangeTextInRange:replacementText:) withObject:nil afterDelay:0.1];
我该怎么做?