Well, I asked Andrew Stone, the developer of Twittelator Neue, on Twitter, and here is his recipe, posted with permission from Andrew:
We are going to write a book on code tricks in Neue! We overlay the w window with an image containing 4 corners above everything
We also have a customizable stretch image navigation bar w / tops rounded
So, as I did in my own project:
UIImage *overlayImg = [UIImage imageNamed:@"overlay.png"]; CALayer *overlay = [CALayer layer]; overlay.frame = CGRectMake(0, 0, overlayImg.size.width, overlayImg.size.height); overlay.contents = (id)overlayImg.CGImage; overlay.zPosition = 1; [self.window.layer addSublayer:overlay];
overlay.png - transparent full-screen image with black corners.
source share