gpt4 book ai didi

ios - 导航栏的底线或工具栏的顶线?

转载 作者:行者123 更新时间:2023-12-01 16:31:20 24 4
gpt4 key购买 nike

我想问线路是

导航栏底行 ”或“ 工具栏顶行 ”?

enter image description here

我真的想删除这条线......

但是我尝试了很多方法,但它们根本不起作用

我使用这个库来显示 View

https://github.com/iltercengiz/ICViewPager

(bty,我已经删除了绘制顶线的lib代码)

// Draw top line
bezierPath = [UIBezierPath bezierPath];
[bezierPath moveToPoint:CGPointMake(0.0, 0.0)];
[bezierPath addLineToPoint:CGPointMake(CGRectGetWidth(rect), 0.0)];
[[UIColor colorWithWhite:197.0/255.0 alpha:0.75] setStroke];
[bezierPath setLineWidth:1.0];
[bezierPath stroke];

谢谢你的帮助 !!

-

[添加]

我从他的库中更改了工具栏的位置

如果添加 0.5 -> 灰线

如果添加 1 -> 白色空白
CGRect frame = self.tabsView.frame;
frame.origin.x = 0.0;
frame.origin.y = [self.tabLocation boolValue] ? topLayoutGuide+0.5 : CGRectGetHeight(self.view.frame) - [self.tabHeight floatValue];
frame.size.width = CGRectGetWidth(self.view.frame);
frame.size.height = [self.tabHeight floatValue];
self.tabsView.frame = frame;

enter image description here

enter image description here

最佳答案

对不起,我要使用 Swift 语言。
话虽如此,让我们完成业务!

要移除navigationBar的底线,必须移除shadowImage和backgroundImage

只要做这样的事情,你就会摆脱那条烦人的线

    self.navigationController?.navigationBar.shadowImage = UIImage()
self.navigationController?.navigationBar.setBackgroundImage(UIImage(), forBarPosition: .Any, barMetrics: .Default)

我不知道工具栏顶部是否还有顶线,请告诉我;)

希望这会有所帮助!

关于ios - 导航栏的底线或工具栏的顶线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31532385/

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