-3

ダウンロード画面があり、ビューを終了または変更するときにユーザーに警告したい。

私はそれのための適切な方法を見つけることができませんでしたか?

それを解決する方法は?

ありがとうございました

4

5 に答える 5

1
- (void)viewWillAppear:(BOOL)animated  

このメソッドは、現在のビューで表示されるビューを示します。

 - (void)viewDidDisappear:(BOOL)animated

このメソッドは、ビューが削除されることを示します。

于 2013-09-25T06:51:09.230 に答える
0

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.

于 2013-09-25T06:30:42.233 に答える
0

次のようなさまざまな方法を使用できます

 - (void)viewWillAppear:(BOOL)animated
 - (void)viewWillDisappear:(BOOL)animated
 - (void)viewDidappear:(BOOL)animated
 - (void)viewDidDisappear:(BOOL)animated

オーバーライドできる任意のメソッド。これらのメソッドは、ビューに移動する前/後に使用できます。

于 2013-09-25T06:36:55.133 に答える