给navigationbar设置背景图片,并且按比例延伸,显示完整图片

//按比例显示图片 
UIImage *backGroundImage = [UIImage imageNamed:@"titleImage"]; 
backGroundImage = [backGroundImage resizableImageWithCapInsets:UIEdgeInsetsZero resizingMode:UIImageResizingModeStretch]; 
[self.navigationController.navigationBar setBackgroundImage:backGroundImage forBarMetrics:UIBarMetricsDefault];

亲测好使。

猜你喜欢

转载自blog.csdn.net/qq_28285625/article/details/110240493