gpt4 book ai didi

iphone - CGContextRef - EXC_BAD_ACCESS 错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:49:00 24 4
gpt4 key购买 nike

<分区>

我正在子类化 UIView 并使用它的实例来设置我的 UITableViewCell backgroundView 和 selectedBackedView 属性。我在 UIView 子类的 drawRect 方法中收到 EXC_BAD_ACCESS 错误。

    if(nil == cell){

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier];
cell.backgroundView = [[CCViewBackground alloc]init];
cell.selectedBackgroundView = [[CCViewBackground alloc]init];

}

UIView 子类 CCBackgroundView -drawRect:

- (void)drawRect:(CGRect)rect
{
// Drawing code
CGContextRef context = UIGraphicsGetCurrentContext();

CGColorRef redColor =
[UIColor colorWithRed:1.0 green:0.0 blue:0.0 alpha:1.0].CGColor;

CGContextSetFillColorWithColor(context, redColor); //Receiving EXC_BAD_ACCESS here
CGContextFillRect(context, self.bounds);

}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com