문제

I have been working on Rich text editor app in IOS.

My aim is to detect the triggering of a Paste event in UITextView, And prevent the default paste operation. Then, I'll convert content in the UIPasteboard to my Editor app format and append the converted nsattributedstring into UITextView.

I have referred the following link:

Detect when a user clicks the paste button in a UITextView.

I think solution of the problem is related to UITextField and not for UITextView(Correct me, If i'm wrong).

Thanks for your answers.

도움이 되었습니까?

해결책

I think creating a custom textview and override to paste: method will help you.

- (void)paste:(id)sender
{
    [super paste:sender];

    NSLog(@"PASTE!!");
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top