gpt4 book ai didi

ios - 在 iOS 6 下运行时,如何从我的 TabBar 中删除白角

转载 作者:行者123 更新时间:2023-11-29 02:57:00 25 4
gpt4 key购买 nike

我试图让我的应用程序在 iOS 6 下看起来不错,但我发现我的标签栏底部边缘有白角和黑色尖端。有什么想法可以消除这种影响吗?

在 iOS 6 上运行

enter image description here

白色人工制品特写

enter image description here

在 iOS 7 上运行(在 iOS 7 上对此感到满意)

enter image description here

最佳答案

事实证明,JASidePanelController我们正在使用我们的 Navigation Drawer样式滑出侧边菜单具有以下方法,JASidePanelController 在设置自身时会调用该方法:(由于在 iOS 6 下应用了圆角,如开发人员在 header 声明中所述)

- (void)stylePanel:(UIView *)panel {
panel.layer.cornerRadius = 6.0f;
panel.clipsToBounds = YES;
}

为了去除角点,我重写了子类中的方法

- (void)stylePanel:(UIView *)panel {
[super stylePanel:panel];

[panel.layer setCornerRadius:0.0f];
}

奇怪的角落现在在 iOS 6 上消失了,在 iOS 7 上一切看起来都很好:-)

enter image description here

关于ios - 在 iOS 6 下运行时,如何从我的 TabBar 中删除白角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23762548/

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