このトピックに関するいくつかの回答を読んだことがありますが、なんらかの理由で私のコードが機能していないようです。これは、すべてのヘルプや提案が高く評価されているUISearchBarDelegateデリゲートメソッド内-(void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
UINavigationBar内のアクティビティインジケータ
UIActivityIndicatorView *activityIndicator = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 20, 20)];
UIBarButtonItem *activity = [[UIBarButtonItem alloc] initWithCustomView:activityIndicator];
[[self navigationItem] setRightBarButtonItem:activity];
[activity release];
[activityIndicator startAnimating];
です!
あなたはactivityIndicatorViewStyleを逃すかもしれません...!また、アクティビティをリリースすることを忘れないでください。インジケータ – Mahesh
自分の状況であるかどうかわかりません。私のアプリケーションの1つでは、インジケータが表示されるまで少し時間がかかります。 [self performSelector:@selector(yourmethod)withObject: nil afterDelay:0.2]; – user523234