Note from the Apple dev docs on the subject of the shadowImage property:
Discussion: The default value is nil, which corresponds to the default
shadow image. When non-nil, this property represents a custom shadow
image to show instead of the default. For a custom shadow image to be
shown, a custom background image must also be set with the
setBackgroundImage:forBarMetrics: method. If the default background
image is used, then the default shadow image will be used regardless
of the value of this property.
So to use the nil UIImage hack you must also be setting a custom nav bar background image. This can be a nil image too, which results in a nice flat, clean 'metro' style nav bar :
[[UINavigationBar appearance] setShadowImage:[[UIImage alloc] init]];
[[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];