谁能告诉我如何删除 CarbonKit 中的深灰色底边边框
Posted
技术标签:
【中文标题】谁能告诉我如何删除 CarbonKit 中的深灰色底边边框【英文标题】:Can Anyone told me how to remove dark Grey bottom side border in CarbonKit 【发布时间】:2018-08-13 10:27:05 【问题描述】:这是我在我看来添加碳套件的代码。
let arrMenuName = ["Signal","Buy or Not"]
carbonSwipe.delegate = self
carbonSwipe = CarbonTabSwipeNavigation(items: arrMenuName as [AnyObject], delegate: self)
carbonSwipe.carbonTabSwipeScrollView.isScrollEnabled = true
carbonSwipe.insert(intoRootViewController: self, andTargetView: mainvw)
carbonSwipe.carbonSegmentedControl?.backgroundColor = UIColor.clear;
carbonSwipe.carbonSegmentedControl?.setWidth(UIScreen.main.bounds.size.width / 2, forSegmentAt: 0)
carbonSwipe.carbonSegmentedControl?.setWidth(UIScreen.main.bounds.size.width / 2, forSegmentAt: 1)
carbonSwipe.setTabBarHeight(48)
carbonSwipe.setNormalColor(UIColor.black, font: UIFont.init(name: "SanFranciscoDisplay-Regular", size: 15)!)
carbonSwipe.setSelectedColor(UIColor.red, font: UIFont.init(name: "SanFranciscoDisplay-Bold", size: 15)!)
carbonSwipe.setIndicatorHeight(2)
carbonSwipe.setIndicatorColor(UIColor.red)
任何建议都将不胜感激。谢谢。
【问题讨论】:
@Kuldeep 谢谢你的工作。 dropbox.com/s/3nx6ghgl3kpfsns/ServiceCall.swift?dl=0 网络服务调用 【参考方案1】:试着写下一行。
carbonSwipe.toolbar.clipsToBounds = true
【讨论】:
以上是关于谁能告诉我如何删除 CarbonKit 中的深灰色底边边框的主要内容,如果未能解决你的问题,请参考以下文章
CarbonKit:如何将选项卡数组标题 ID 传递给 UIViewController?