美文网首页
iOS导航栏背景图拉伸

iOS导航栏背景图拉伸

作者: 倪大头 | 来源:发表于2019-12-24 11:42 被阅读0次
UIImage *backgroundImage = [UIImage imageNamed:@"导航栏背景"];
[self.navigationController.navigationBar setBackgroundImage:backgroundImage forBarMetrics:UIBarMetricsDefault];

一开始这样写,发现在plus上无法填满


image.png

加一句就妥了:

UIImage *backgroundImage = [UIImage imageNamed:@"导航栏背景"];
backgroundImage = [backgroundImage resizableImageWithCapInsets:UIEdgeInsetsZero resizingMode:UIImageResizingModeStretch];
[self.navigationController.navigationBar setBackgroundImage:backgroundImage forBarMetrics:UIBarMetricsDefault];
image.png

相关文章

网友评论

      本文标题:iOS导航栏背景图拉伸

      本文链接:https://www.haomeiwen.com/subject/avwxoctx.html