0

を使用してタッチ機能を備えたグリッドを作成しようとしていNSMutableDictionaryます。_coordinateRecordsビューコントローラーのviewDidLoad関数でこれを使用して、座標グリッド(私の辞書です)を作成しました:

[self _loopOnCellWithIterator: (^(int iLooper, int jLooper)
{
    int cellWidth = 10;
    int space = 1;

    [_coordinateRecords setObject: [NSIndexPath indexPathForRow: iLooper inSection: jLooper] forKey: [NSValue valueWithPointer: redCell]];

    redCell = [[[UIView alloc] initWithFrame: CGRectMake(iLooper * (cellWidth + space) + 24.25,
                                                         jLooper * (cellWidth + space) + 110,
                                                         cellWidth, cellWidth)] init];
    _cells[iLooper][jLooper] = redCell;

    [redCell setBackgroundColor: [UIColor blueColor]];

    [[self view] addSubview: redCell];
})];

このブロックを使用して:

- (void)_loopOnCellWithIterator: (void(^)(int iLooper, int jLooper))iterator
{
    for (int iLooper = 0; iLooper < kCellSize; iLooper++)
    {
        for (int jLooper = 0; jLooper < kCellSize; jLooper++)
        {
            iterator(iLooper, jLooper);
        }
    }
}

それで、設定した辞書内のオブジェクトをどのように呼び出すことができるのだろうと思っていました。

4

1 に答える 1