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

时间:2018-08-13 10:27:05

标签: ios swift4 uisegmentedcontrol 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)

enter image description here

任何建议都值得赞赏。谢谢。

1 个答案:

答案 0 :(得分:1)

尝试在下面的行中编写。

carbonSwipe.toolbar.clipsToBounds = true