我有一个问题,我得到了一个带有这段代码的 uiwebview 的截图:
UIGraphicsBeginImageContextWithOptions(self.myWebView.bounds.size, self.myWebView.opaque, 0.0);
[self.myWebView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
一切正常,现在我需要截取特定 div 的屏幕截图,用户在 uiwebview 内长按,然后我检测到触摸的 div 并为这个特定 div 拍照。这样做的最佳方法是什么?