Touch screen to call up play menu not working.
Hello, snot2bad. Thank you for your report. I will fix it in next version(1.1.2).
メインビュー制御クラス MTMainViewCtrl の不具合。 スクリーンがタップされたことを判定するロジックを、次のように実装していた。 タッチ開始イベントでタップフラグをON、タッチ移動イベントでタップフラグをOFFにする。 タッチ終了イベントでタップフラグがONのままだった場合、つまり移動イベントが発生しなかった場合に、 タップされたと判断してボタン表示処理を実行していた。
しかしiOSのバージョンアップによって、移動が発生しない場合であっても、定期的に タッチ移動イベントが発生するようになったため、ユーザがタップ操作をした場合でも 「移動が発生したのでタップではない」と誤った判断をしていた。
タッチ移動イベントで通知されるタッチ位置を利用して累積移動距離を計算する。 タッチ終了イベントで累積移動距離がゼロの場合は、タップされたと判断する。 移動が発生しない場合であっても、定期的にタッチ移動イベントが発生するが、 通知されるタッチ位置は変わらないため、累積移動距離は変化しない。
メンバからタップフラグ m_isTap を削除。 メンバに前回タッチ位置 m_PrevTouchPoint と累積移動距離 m_TounchesTotalDistance を追加。
前回タッチ位置と累積移動距離の初期化処理を追加。
通知されたタッチ位置を前回タッチ位置として保存。累積移動距離をゼロクリア。
通知されたタッチ位置と前回タッチ位置から累積移動距離を更新する。
累積移動距離がゼロの場合はタップとみなす。
前回タッチ位置と累積移動距離を初期化。
A few seconds after a midi file has been playing, the play menu/options disappear from the screen. You use to be able to touch anywhere on the screen to have the play menu reappear. This no longer works on the iPhone 6 or iPhone 7 with the latest iOS. I've tried touching every inch of the screen. Once in a while I can get the play menu to come up but there's no rhyme or reason to it... it's very sporadic. After a midi file is done playing, the only way to get back to your midi files is by restarting the app. The only way to stop a midi file while it's playing is to close the app. Love the app and use it all the time. Thanks for your help.