本文介绍了CALayer-backgroundColor翻转了吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在这样创建 CALayer
:
UIColor *color = [UIColor colorWithPatternImage:[UIImage imageNamed:@"MyPattern.png"]];
backgroundLayer = [[CALayer alloc] init];
[backgroundLayer setBackgroundColor:[color CGColor]];
[[self layer] addSublayer:backgroundLayer];
由于某种原因,该模式被颠倒了。我已经尝试设置 geometryFlipped
并应用子层变换,但是它不起作用。
For some reason, the pattern is drawn upside down. I've already tried setting geometryFlipped
and applying sublayer transforms, but it doesn't work.
推荐答案
使用 [backgroundLayer setTransform:CATransform3DMakeScale(1.0,-1.0,1.0)];
实际上确实有效。
这篇关于CALayer-backgroundColor翻转了吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!