Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have UIView subclass - actually a puzzle piece - with 2 different CGLayer initialized at initWithFrame.

In drawRect I have to blend this two layer, and the uppermost should have variable alpha depending on game-logic.

What is the best (most performance optimized) way to do this? Is there any CGLayer, or CGContext function that sets some alpha before drawing?

share|improve this question

1 Answer

up vote 5 down vote accepted

Set the -opacity of the layer. Remember that the layer's -opaque setting must be NO. The default is NO, but it's commonly set to YES for performance reasons.

If you're already doing -drawInContext:, then you can experiment with CGContextSetAlpha(). Generally, though, you don't use -drawRect: and layers at the same time. You usually let either the view or the layers do the drawing.

share|improve this answer
You mean that I should create an independent eg. -(void)renderView method, and implement layer drawings there? Then [puzzlePiece setNeedDisplay] could be substituted by a simple [puzzlePiece renderView]? – Geri Jan 6 '10 at 23:15
That sounds about right, if you need to render all the pieces of the view every time. Otherwise, I would just re-render the layers you need when your model class (data) changes. There's no reason to redraw a layer just because some other layer needs to redraw. – Rob Napier Jan 7 '10 at 0:24
'Course. Puzzle pieces actually are allocated/addSubview-ed instances of a PuzzlePiece:UIView class, so only the recently user-manipulated piece gets the redraw message (renderView above "means" renderPuzzleView). – Geri Jan 7 '10 at 13:09
Thanks, bro. CGContextSetAlpha just works fine. – Geri Jan 7 '10 at 21:40

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.