Gesture recognition with UIWebView

前端 未结 6 1394
孤街浪徒
孤街浪徒 2021-02-04 10:58

I have set up some gesture recognition in an app that I\'m building. One of the gestures is a single finger single tap, which hides the toolbar at the top of the screen. Works g

6条回答
  •  心在旅途
    2021-02-04 11:36

    I've been looking for the same thing and found this: There is an iOS specific property that disables the callout when you hold your finger on a link. You add this into the styling (CSS) of your urls.

    -webkit-touch-callout: none;
    

提交回复
热议问题