警告内容
‘beginIgnoringInteractionEvents()’ was deprecated in iOS 13.0: Use UIView’s userInteractionEnabled property instead
原因
警告文を見ればその通りなのですが、beginIgnoringInteractionEvents()
は、iOS13.0で非推奨になったので、userInteractionEnabled
を使ってください。という警告です。
なので、userInteractionEnabled
を使いましょう。
解決方法
// タップアクション無効化 UIApplication.shared.beginIgnoringInteractionEvents() // タップアクション有効か UIApplication.shared.endReceivingRemoteControlEvents()
// タップ無効化 view.isUserInteractionEnabled = false // タップ有効化 view.isUserInteractionEnabled = true