有人可以告诉我如何在CarbonKit中移除深灰色底边框吗

有人可以告诉我如何在CarbonKit中移除深灰色底边框吗

这是我认为的添加Carbon工具包的代码。

    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)


ios - 有人可以告诉我如何在CarbonKit中移除深灰色底边框吗-LMLPHP

任何建议,不胜感激。谢谢。

最佳答案

尝试在下面的行中编写。

carbonSwipe.toolbar.clipsToBounds = true

关于ios - 有人可以告诉我如何在CarbonKit中移除深灰色底边框吗,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51820193/

10-10 02:37