首页 > 解决方案 > 谁能告诉我如何删除 CarbonKit 中的深灰色底边边框

问题描述

这是我在我看来添加碳套件的代码。

    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)

在此处输入图像描述

任何建议都会不胜感激。谢谢你。

标签: iosswift4uisegmentedcontrolcarbonkit

解决方案


尝试写下一行。

carbonSwipe.toolbar.clipsToBounds = true

推荐阅读