0

iphone初心者です。アプリにコレクション ビューがあり、正常に動作しますが、別のイメージ ビューの次のビュー コントローラーで必要なイメージとそのイメージを選択したいと考えています。- (NSInteger)collectionView:

次のコードを使用します。

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return recipeImages.count;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *identifier = @"Cell";

    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];

    UIImageView *recipeImageView = (UIImageView *)[cell viewWithTag:100];
    recipeImageView.image = [UIImage imageNamed:[recipeImages objectAtIndex:indexPath.row]];

    return cell;
}
4

1 に答える 1

0

実装collectionView:didSelectItemAtIndexPath::

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    UIImage *image = [UIImage imageNamed:[recipeImages objectAtIndex:indexPath.item]];
    // go on...
}
于 2013-06-23T07:24:37.317 に答える