ダウンロード画面があり、ビューを終了または変更するときにユーザーに警告したい。
私はそれのための適切な方法を見つけることができませんでしたか?
それを解決する方法は?
ありがとうございました
ダウンロード画面があり、ビューを終了または変更するときにユーザーに警告したい。
私はそれのための適切な方法を見つけることができませんでしたか?
それを解決する方法は?
ありがとうございました
- (void)viewWillAppear:(BOOL)animated
このメソッドは、現在のビューで表示されるビューを示します。
- (void)viewDidDisappear:(BOOL)animated
このメソッドは、ビューが削除されることを示します。
You can check using methods viewDidDisappear: It notifies the view controller that its view was removed from a view hierarchy.
- (void)viewDidDisappear:(BOOL)animated
You can override this method to perform additional tasks associated with dismissing or hiding the view. If you override this method, you must call super at some point in your implementation.
and viewWillAppear: It notifies the view controller that its view is about to be added to a view hierarchy.
- (void)viewWillAppear:(BOOL)animated
This method is called before the receiver’s view is about to be added to a view hierarchy and before any animations are configured for showing the view. You can override this method to perform custom tasks associated with displaying the view.
次のようなさまざまな方法を使用できます
- (void)viewWillAppear:(BOOL)animated
- (void)viewWillDisappear:(BOOL)animated
- (void)viewDidappear:(BOOL)animated
- (void)viewDidDisappear:(BOOL)animated
オーバーライドできる任意のメソッド。これらのメソッドは、ビューに移動する前/後に使用できます。