• 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

長いジョブを実行中に UIActivityIndicatorView を表示したい場合。UIActivityIndicatorView は一旦 currentRunLoop に戻らないと表示されないので、以下のようにジョブをくくっても表示されない。

   1  	UIActivityIndicatorView* wAI = [ [ [ UIActivityIndicatorView alloc ] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge ] autorelease ];
   2  	[ [ UIApplication sharedApplication ].keyWindow addSubview:wAI ];
   3  	wAI.center = CGPointMake( 160, 240 );
   4  	[ wAI startAnimating ];
   5  	[ self 長いジョブ ];
   6  	[ wAI removeFromSuperview ];
   7  

表示させるための一つ目のアイディアは以下のように currentRunLoop を一瞬だけ動かす方法。

   1  	[ wAI startAnimating ];
   2  	[ NSRunLoop.currentRunLoop runUntilDate:[ NSDate dateWithTimeIntervalSinceNow:0.0 ] ];
   3  	[ self LongJob ];

2つ目のアイディアはジョブとインディケータを currentRunLoop に戻ったあと動くようにスケジュールすること。

   1  	wAI.startAnimating;
   2  	[ self performSelector:@selector(LongJob) withObject:nil afterDelay:0 ];
   3  	[ wAI performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:0 ];
   4  

ネットで別スレッドでやってる例をよく見るが、その必要はない。 単に currentRunLoop が動けばいい。 別スレッドにするとしたら、長いジョブの方。

posted by Face Saturn on Wed 12 Jan 2011 at 04:07

Comments:

or Preview
Social Bookmarks
  • Delicious
  • B_entry1877
  • Clip_16_12_w
Services from s21g
twpro(ツイプロ)
Twitterプロフィールを快適検索
地価2009
土地の値段を調べてみよう
MyRestaurant
自分だけのレストラン手帳
Formula
ブログに数式を埋め込める数式コミュニティ