私は次のような活動指標を表示します
CGRect frame = CGRectMake(0.0, 0.0, 25.0, 25.0);
loading = [[UIActivityIndicatorView alloc] initWithFrame:frame];
[loading startAnimating];
[loading sizeToFit];
loading.autoresizingMask = (UIViewAutoresizingFlexibleLeftMargin |
UIViewAutoresizingFlexibleRightMargin |
UIViewAutoresizingFlexibleTopMargin |
UIViewAutoresizingFlexibleBottomMargin);
self.navigationItem.titleView = loading;
上部のナビゲーションバーにあります。そして私は電話します:
[loading stopAnimating];
止まる。
これは正常に機能しますが、アクティビティインジケーターを非表示にした後、テキスト(self.title = @ "text";)を表示したいのですが、これは機能しません。
何が恋しいですか?ご協力いただきありがとうございます!