웹 뷰에서 터치가 Apple Pencle인지 핑거인지 탐지(원본 리액트) 사파리 모바일에서 터치는 다음을 사용하여 Apple Pencle 대 기타(손가락/마우스)로 분류할 수 있다. event.touches[0].touchType === 'stylus' //pencil event.touches[0].touchType !== 'stylus' //other 그러나 반응 네이티브 웹뷰에서 수신된 모든 이벤트(애플 펜슬과 핑거 사용)는 다음과 같이 수신된다. touchType === 'direct' //inside webview, both pencil and other 웹 뷰에서 Apple Pencle의 터치감을 감지하는 방법은? 보아하니event.touches[0] > 0또 다른 가능성은 있지만 이 또한0웹 ..