Home > 閉じる


Swiftでモーダルの閉じる機能を無効にする方法

モーダルの閉じる機能を無効にする方法: モーダルを表示する際に、以下のコードを使用して閉じるボタンを無効にすることができます。let modalViewController = YourModalViewController() modalViewController.modalPresentationStyle = .fullScreen modalViewController.isModalInPresentation = true present(modalViewController, animated: true, completion: nil)>>More