When UIAlertViews pop up, there is a vignette effect in the background. That is, the edges are darker and the center is lighter.

I was wondering if this vignette effect was built into Cocoa Touch. I would like to show the vignette behind one of my custom views.
It is built into UIKit (as UIAlertView is part of UIKit), but it’s not public.
It shouldn’t be too hard to create the same effect, though. It’s just a radial gradient, which you can draw in code or Photoshop.
UPDATE: If you must know, the background is a class called
_UIAlertNormalizingOverlayWindowwith the following class hierarchy: