How can i just blend two images, put one over another and apply overlay in Xcode
**i do this:**
cell.imageView.image = [UIImage imageNamed:@"yellowOrbTest"];
UIImageView *cellAdds = [[UIImageView alloc] initWithFrame:CGRectMake(3, 15, 55, 40)];
UIImage *test = [UIImage imageNamed:@"lineOne"];
[test drawInRect:CGRectMake(3, 15, 55, 40) blendMode:kCGBlendModeOverlay alpha:1];
cellAdds.image = test;
[cell.imageView addSubview:cellAdds];
**but this results in en error:**
<Error>: CGContextSaveGState: invalid context 0x0
<Error>: CGContextSetBlendMode: invalid context 0x0
<Error>: CGContextSetAlpha: invalid context 0x0
<Error>: CGContextTranslateCTM: invalid context 0x0
<Error>: CGContextScaleCTM: invalid context 0x0
<Error>: CGContextDrawImage: invalid context 0x0
<Error>: CGContextRestoreGState: invalid context 0x0