Rodhos Soft

備忘録を兼ねた技術的なメモです。Rofhos SoftではiOSアプリ開発を中心としてAndroid, Webサービス等の開発を承っております。まずはご相談下さい。

2020-06-10から1日間の記事一覧

長押し系

ひとまず色々あるのでまとめて /* 画像のクリックなどのイベントを無視 */ img { pointer-events: none; user-select: none; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; -webkit-user-drag: none; }

スクロール禁止にする

この記事に詳細は書いてある。 qiita.com touchmoveをaddEventListenerしてpreventDefaultする。その際にpassive:falseを指定する必要がある。 function handleTouchMove(event:TouchEvent){ console.debug("touchmove.noScroll prevent.."); event.preventD…

スキーム

スキームの設定で、ビルドにdebug, adhoc, releaseの何を使うか、アーカイブにdebug, adhoc, releaseの何を使うかを決められる。 スキームは複数作れるのでその設定も増やせる。