0

そして、私はこれも尋ねなければなりません。コードを何時間も調べてあらゆることを試しましたが、古い画像の選択が解除されないのはなぜですか? ユーザーは 1 つのアイコンのみを選択できる必要があります。選択したアイコンが Core Database に保存されます。したがって、このアイコンは、このビューを開くときにも事前に選択されています。しかし、彼が新しいアイコンを選択しても、この項目は選択解除されません..なぜですか?

#import "IconSelectionCollectionViewController.h"
#import "IconSelectionCell.h"

@interface IconSelectionCollectionViewController ()
@property (nonatomic, strong) NSArray *icons;
@end


@implementation IconSelectionCollectionViewController

@synthesize mainCategory = _mainCategory;


#pragma mark Initialize model
- (void)setMainCategory:(MainCategory *)mainCategory
{
    //TODO
    _mainCategory = mainCategory;
    self.title = mainCategory.name;
}


#pragma mark View setup
- (void)viewDidLoad
{
    [super viewDidLoad];

    [self.collectionView registerClass:IconSelectionCell.class forCellWithReuseIdentifier:@"IconCell"];

    // Do any additional setup after loading the view.
    self.icons = [NSArray arrayWithObjects:@"DefaultIcon", @"Car", @"Diploma", @"Earth", @"Flight", @"Home", @"Pen", @"Scooter", @"Ship", @"Train", nil];
    self.collectionView.allowsSelection = YES;
    self.collectionView.allowsMultipleSelection = NO;
}


#pragma mark Data source delegate methods
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return self.icons.count;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *identifier = @"IconCell";

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

    cell.iconImageView.image = [UIImage imageNamed:[self.icons objectAtIndex:indexPath.row]];

    if([self.mainCategory.icon isEqualToString:[self.icons objectAtIndex:indexPath.row]]){
        cell.selected = YES;
    }

    return cell;
}

-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
    return 1;
}

#pragma mark Collection View Delegate methods
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    self.mainCategory.icon = [self.icons objectAtIndex:indexPath.row];
}

#pragma mark – UICollectionViewDelegateFlowLayout

- (CGSize)collectionView:(UICollectionView *)collectionView layout:
(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {

    CGSize itemSize;
    itemSize.height = 62;
    itemSize.width = 62;

    return itemSize;
}

- (UIEdgeInsets)collectionView:
(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {
    return UIEdgeInsetsMake(10, 10, 10, 10);
}

@end
4

1 に答える 1

0

私はコレクション ビューにあまり詳しくありませんが、テーブル ビューと非常によく似ており、これは UITableview で時々発生する問題であるため、考えられる解決策をいくつか見ていきます。

これを行う 1 つの方法は、選択コードの後に​​ [self.collectionView reloadData] を呼び出すことです。これにより、collectionView が画像を再描画し、そのうちの 1 つだけが選択された画像に設定されます。

ただし、再利用可能なセルをデキューすると、再利用されたセルに「選択」値が設定される可能性があるため、これで問題が解決するとは確信していません。別の方法として、UICollectionView のメソッド cellForItemAtIndexPath: を使用して両方のセルを取得し、メイン メソッドで設定した方法で選択した値を設定できると思います。それはうまくいくかもしれませんが、うまくいかない場合は、それを実行して、データのリロードを再度呼び出してみてください。

于 2013-06-04T17:39:15.227 に答える