7

内に UIView サブクラス ( ThumbView) がありUICollectionViewCellます。次のコードは、iOS 7 シミュレーターでうまく機能します。

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *identifier = @"Cell";
    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
    ThumbView *thumbView = (ThumbView *)[cell viewWithTag:1];
    [thumbView setNeedsDisplay];
    return cell;
}

ここに画像の説明を入力

ただし、iOS 6 バージョンのシミュレーターでは:

グリッドはすべてなくなりました:

ここに画像の説明を入力

が呼び出されることを確認するために、ThumbView に を入れましNSLogた。drawRectdrawRect

なにが問題ですか?

  • Xcode バージョン 5.0 (5A1412)
  • iOS シミュレーター バージョン 7.0 (463.9.4)

更新 (描画コード):

- (void)drawRect:(CGRect)rect
{
    NSLog(@"%s", __func__);
   [self drawGrid:rect];
}

- (void)drawGrid:(CGRect)rect
{
    CGFloat margin = self.margin;
    CGFloat lineWidth = 2.0;

    CGContextRef context = UIGraphicsGetCurrentContext();
    CGRect gridRect = CGRectInset(rect, margin, margin);

    for (NSInteger i = 1; i < 9; i++) {
        CGFloat h = gridRect.size.height / 9;
        CGFloat y = i * h;
        CGContextMoveToPoint(context, margin, y+margin);
        CGContextAddLineToPoint(context, gridRect.size.width+margin, y+margin);
        CGContextSetLineWidth(context, lineWidth/4.0);
        if (i == 3 || i == 6) {
            CGContextSetStrokeColorWithColor(context, UIColor.darkGrayColor.CGColor);
        } else {
            CGContextSetStrokeColorWithColor(context, UIColor.lightGrayColor.CGColor);
        }
        CGContextStrokePath(context);
    }

    for (NSInteger i = 1; i < 9; i++) {
        CGFloat w = gridRect.size.width / 9;
        CGFloat x = i * w;
        CGContextMoveToPoint(context, x+margin, margin);
        CGContextAddLineToPoint(context, x+margin, gridRect.size.height+margin);
        CGContextSetLineWidth(context, lineWidth/4.0);
        if (i == 3 || i == 6) {
            CGContextSetStrokeColorWithColor(context, UIColor.darkGrayColor.CGColor);
        } else {
            CGContextSetStrokeColorWithColor(context, UIColor.lightGrayColor.CGColor);
        }
        CGContextStrokePath(context);
    }

    CGFloat frameWidth = lineWidth * 2.0;
    CGRect frameRect = CGRectInset(rect, 0.0, 0.0);
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) frameWidth = lineWidth * 2.0;
    CGContextSetLineWidth(context, frameWidth);
    CGContextSetStrokeColorWithColor(context, UIColor.darkGrayColor.CGColor);
    CGContextStrokeRect(context, frameRect);
}
4

2 に答える 2

1

iOS6で白地に白線が引かれていないか確認しましたか?(たとえばiOS7でtintColorを使用している場合...)

于 2013-09-27T17:25:34.030 に答える