LoginSignup
5
5

More than 5 years have passed since last update.

[Objective-C] NavigationBarにActivityIndicatorを表示する

Last updated at Posted at 2014-03-09

NavigationBar部分に検索中などに使うインジケータを表示する方法のメモ。
まぁ標準的な機能だけでできるのだけど、意外と記事が見つからなかったのと、色々問題が出るケースがあるみたい。(それについてはこちらの記事を参照

UIBarButtonItemのinitWithCustomView:メソッドを使うだけ。

簡単なのでコードだけ。

UIActivityIndicatorView *activity = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
[activity startAnimating];

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:activity];
5
5
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
5
5