gpt4 book ai didi

iphone - 如何去除 UINavigatonItem 的边框线

转载 作者:行者123 更新时间:2023-12-03 19:05:57 29 4
gpt4 key购买 nike

是否可以删除 UINavigationItem 的边框?我在黑色导航下的 View 。栏是黑色的,我不希望它们之间没有视觉边界。

为了更清楚(图像不是来 self 的应用程序):

enter image description here

最佳答案

您无法隐藏它。您可以添加一个 subview 来屏蔽它。示例:

UIView *overlayView = [[UIView alloc] initWithFrame:CGRectMake(0, 43, 320, 1)];
[overlayView setBackgroundColor:[UIColor whiteColor]];
[navBar addSubview:overlayView]; // navBar is your UINavigationBar instance
[overlayView release];

我没有检查它,但它应该可以工作。

<小时/>

编辑:我检查过,它有效。

关于iphone - 如何去除 UINavigatonItem 的边框线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5888265/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com