我創建一個CALayer
這樣的:CALayer - backgroundColor翻轉?
UIColor *color = [UIColor colorWithPatternImage:[UIImage imageNamed:@"MyPattern.png"]];
backgroundLayer = [[CALayer alloc] init];
[backgroundLayer setBackgroundColor:[color CGColor]];
[[self layer] addSublayer:backgroundLayer];
出於某種原因,該圖案是顛倒繪製。我已經嘗試設置geometryFlipped
並應用子圖層轉換,但它不起作用。
但它也翻轉了它的sublayers,我不想要 – 2017-04-06 11:39:58