LoginSignup
11
11

More than 5 years have passed since last update.

iOS基本的なアプリケーションライフサイクルサンプル

Last updated at Posted at 2013-08-27

初心者の自分向けにアプリケーションのlifecycleのサンプルを作ってみました。
あくまでも自分用ですが、参考になる人がいたら作ったかいがあります、、、

基本的にはAppDelegateのcycleArrayという配列に呼び出されたメソッドのメソッド名とメソッドの内容を順番につっこんでいるだけです。

- (void)viewWillDisappear:(BOOL)animated  
{  
    [super viewWillDisappear:YES];   
    [app.cycleArray addObject:[NSString stringWithFormat:@"%s\n%@",__func__,@"ビューが非表示にされる前にこの処理が呼ばれる。"]];   
}  

下記のgithubリンクよりダウンロードしてお試しください。

ScreenShot

IMG_0821.pngIMG_0824.pngIMG_0822.png

Demo youtube

AppLifeCycle

DownLoad

github AppLifeCycle
applifecycleyoutube1.png

11
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
11