最新 最热

iOS13以上导航栏状态栏黑色渐变问题解决

最近接手一个老项目,发现每次push一个新VC,导航栏状态栏都默认为黑色,并且在滚动的过程中渐变成白色,到处搜索都没定位到哪里配置了backgroundColor = blackColor...

2023-02-14
1

iOS16适配指南之UINavigationItem

增加了类型为 UINavigationItem.ItemStyle 的属性style用于描述 UINavigationItem 在 UINavigationBar 上的布局,共有 3 种样式:navigator(默认样式),browser(浏览器样式)与editor(编辑器样式)。// Created by Yun......

2022-08-23
0

iOS组件系列之UINavigationBar与UISearchBar

设置UINavigationBar的titleView和UISearchBar背景透明self.titleSearchBar = UISearchBar(frame: CGRectMake(0,0,200,44));self.titleSearchBar.backgroundColor = UIColor.clea...

2019-10-22
0

为UINavigationBar添加自定义背景

@implementation UINavigationBar (UINavigationBarCategory)- (void)drawRect:(CGRect)rect {//颜色填充//UIColor *color = [UIColor redColor];//CGContextRef contex...

2018-01-16
0