1

collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath メソッドでは、オーディオ ファイルの配列をコレクション ビュー セルにロードしようとしていますが、indexPath 行に基づいて、インデックス 0 のセルをスキップし、インデックス 1 のセルから、セルが選択されたときにオーディオ ファイルを再生しています。なぜなのか理解できません。

これが私のコードです

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
audioArray =[[NSArray alloc] initWithObjects:@"0", @"1", @"2", @"3", nil];

NSString *filePath = [audioArray objectAtIndex:indexPath.row];

NSString *audioFilePath = [[NSBundle mainBundle] pathForResource:filePath ofType: @"mp3"];

NSURL *fileURL = [[NSURL alloc] initFileURLWithPath: audioFilePath];

audioPlayer = [[AVAudioPlayer alloc]
               initWithContentsOfURL:fileURL error:nil];

}

誰かが私を正しい方向に向けることができれば。私は感謝します。

手伝ってくれてありがとう。

4

1 に答える 1

3

最後に修正しました

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{

if ([[segue identifier] isEqualToString:@"showDetail"])
{
    NSIndexPath *selectedIndexPath = [[self.collectionView indexPathsForSelectedItems] objectAtIndex:0];

    // load the image, prevent it from being cached using 'initWithContentsOfFile'

    NSString *imageNameToLoad = [NSString stringWithFormat:@"%d_full", selectedIndexPath.item];

    NSString *pathToImage = [[NSBundle mainBundle] pathForResource:imageNameToLoad ofType:@"jpg"];

    UIImage *image = [[UIImage alloc] initWithContentsOfFile:pathToImage];


    NSString *audioToLoad = [NSString stringWithFormat:@"%d", selectedIndexPath.item];


    NSString *audioFilePath = [[NSBundle mainBundle] pathForResource:audioToLoad ofType: @"mp3"];

    NSURL *fileURL = [[NSURL alloc] initFileURLWithPath: audioFilePath];

    audioPlayer = [[AVAudioPlayer alloc]
                   initWithContentsOfURL:fileURL error:nil];

    DetailViewController *detailViewController = [segue destinationViewController];

    detailViewController.image = image;

    detailViewController.audioPlayer = audioPlayer;

               }        
            }

それは誰かを助けるかもしれません。

于 2013-06-11T21:31:22.087 に答える