0

自 iOS 7 alpha 以来,我一直在为此苦苦挣扎。首先我认为这是 alpha 上的一个错误,但它仍在发生,所以我做错了什么。

在应用程序周围,我正在绘制诸如单元格背景之类的东西,以及使用 CG 之类的东西,但在 iOS 7 中它不显示。

举个例子:

@interface NewManagerCell : UITableViewCell
@end

@implementation NewManagerCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        //some initialization code here
    }
    return self;
}
- (void)drawRect:(CGRect)rect {
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGRect bounds = self.bounds;
    bounds.origin.y += 5; //inter-cell spacing
    bounds.size.height -= 5;

    CGFloat mx = CGRectGetMinX(bounds);
    CGFloat Mx = CGRectGetMaxX(bounds);
    CGFloat my = CGRectGetMinY(bounds);
    CGFloat cy = CGRectGetMinY(bounds)+CGRectGetHeight(bounds)*.375;
    CGFloat My = CGRectGetMaxY(bounds);

    CGContextBeginPath(context);

    CGContextMoveToPoint(context, mx, cy);
    CGContextAddLineToPoint(context, mx+cy-my, my);
    CGContextAddLineToPoint(context, Mx-cy+my, my);
    CGContextAddLineToPoint(context, Mx, cy);
    CGContextAddLineToPoint(context, Mx, My);
    CGContextAddLineToPoint(context, mx, My);
    CGContextAddLineToPoint(context, mx, cy);

    CGContextSetFillColorWithColor(context, [[UIColor colorWithPatternImage:[UIImage imageNamed:@"cell-pattern"]] CGColor]);
    CGContextFillPath(context);

    mx += 4+CGRectGetWidth(bounds)/4-CGRectGetHeight(bounds)*.375/16;
    Mx -= 4;
    my += 4;
    My -= 4;
    cy += 2;

    CGMutablePathRef path = CGPathCreateMutable();

    CGContextBeginPath(context);

    CGPathMoveToPoint(path, &CGAffineTransformIdentity, mx, my);
    CGPathAddLineToPoint(path, &CGAffineTransformIdentity, Mx-(cy-my), my);
    CGPathAddLineToPoint(path, &CGAffineTransformIdentity, Mx, cy);
    CGPathAddLineToPoint(path, &CGAffineTransformIdentity, Mx, My);
    CGPathAddLineToPoint(path, &CGAffineTransformIdentity, mx, My);
    CGPathAddLineToPoint(path, &CGAffineTransformIdentity, mx, my);

    CGContextAddPath(context, path);
    CGContextSetRGBFillColor(context, 1, 1, 1, 1);
    CGContextFillPath(context);

    CGContextAddPath(context, path);
    CGContextSetRGBStrokeColor(context, .69, .69, .69, 1);
    CGContextStrokePath(context);

    CGPathRelease(path);
}
@end

这在 7 之前的任何版本的 iOS 中都有效,现在停止工作。有人知道发生了什么吗?

4

1 回答 1

1

尝试创建一个UIView包含要绘制的代码的自定义,然后您可以将其添加到单元格的根视图中。

于 2013-09-23T21:06:17.417 回答