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

来源:互联网 发布:sql中截取字符串函数 编辑:程序博客网 时间:2024/05/18 02:46

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

这里写图片描述

原创粉丝点击