Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The black is a main content layer (actually hosted layer in NSView). I set position, anchor point, bounds, and all works as expected if I use just a CALayer with a background:

self.rightFromLayer.backgroundColor = [[NSColor redColor] CGColor];

enter image description here

Bu every time I try to assign CGImageRef content to CALayer the layer showed with offset. The all geometry for point, bounds, anchor point is the same. The image has the same size as bounds :

[self.rightFromLayer setContents:(id)[self.rightFromImage CGImage]]

enter image description here

What's interesting, if I make offset to normalized value that I changed anchor point (I set anchor point in x axis from default 0.5 value to 0.0) and make offset to the layer x position, it showed in right place:

xCenterOfFromView += 0.5 * self.image.size.width;
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.