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.

How do I fade my Core Animation application to a fullscreen black screen first like Front Row?

share|improve this question

2 Answers

up vote 4 down vote accepted

This isn't actually a CoreAnimation feature, but it is provided by Quartz. When switching to fullscreen mode, you can use the CGDisplayFade() function to get the system to do a smooth fade over some number of seconds. The Apple docs provide sample code on exactly how to do this:

If you invoke the fade synchronously, you can then start scheduling your CoreAnimation right after the fade has completed.

share|improve this answer
Thanks, that's just what I was looking for. Except you have a typo, it's CGDisplayFade() – DonnaLea Jan 9 '10 at 4:04
D'oh - fixed, thanks. – gavinb Jan 9 '10 at 9:33

here are a few fade effects:

http://www.informit.com/articles/article.aspx?p=1168314&seqNum=2

share|improve this answer

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.