//以下四个条件缺一不可 /1.必须是半透明状态 self.navigationBar.translucent = YES; //2.导航栏背景图片为空图片 (不可以设置backgroundColor或者barTintColor, 没有效果的) [self.navigationBar setBackgroundImage:[[UIImage alloc]init] forBarMetrics: UIBarMetricsDefault]; //3.阴影图片为空图片 (不可以设置为nil,没用的) [self.navigationBar setShadowImage:[[UIImage alloc] init]]; //其实到导航栏才44px, 但是backgroundView有64px self.navigationBar.layer.masksToBounds = YES;
原文:http://www.cnblogs.com/apem/p/5254389.html