我知道UIMenuController默认会在UIWebview中显示像复制,剪切,粘贴等弹出操作。我需要在粘贴操作发生时从粘贴板中获取内容。所以我需要拦截来自Responder的UIResponderStandardEditActions的粘贴操作。 / p>
对我来说,粘贴动作和其他动作(复制/剪切)也没有被调用。
- (void)paste:(id)sender
{
NSLog(@"paste");
[super paste:sender];
}
我需要返回什么?
- (BOOL) canPerformAction:(SEL)action withSender:(id)sender