You can try installing a UIView CALayer with a large shadow radius and transparency. Sort of:
#include <QuartzCore/QuartzCore.h>
...
CALayer *layer = myView.layer; layer.shadowOpacity = .5; layer.shadowColor = [[UIColor blackColor] CGColor]; layer.shadowOffset = CGSizeMake(0,0); layer.shadowRadius = 10;
source share