アプリにこの検索バーがあります。再生、次、前のボタンをご覧ください。
検索項目から曲を検索してクリックすると、ファーストレスポンダーが検索バーを辞退し、再生ボタン、次ボタン、前ボタンなどのボタンが非表示になります。
私はこのコードを使用しています
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
MPMediaItem * song;
_nowPlayingIndex=indexPath.row;
if (tableView == self.searchDisplayController.searchResultsTableView)
song = searchResults[_nowPlayingIndex];
else
song = _songs[_nowPlayingIndex];
[self.musicPlayer setNowPlayingItem:song];
[self.musicPlayer play];
_playButton.hidden=true;
_pauseButton.hidden=false;
[_mySearchBar resignFirstResponder];
}
ボタンが非表示になっているのはなぜですか?