XLPagerTabStrip swift

XLPagerTabStrip swift

我正在尝试在我的项目中实现 XLPagerTabStrip。在文档中它说 "ButtonBarPagerTabStripViewController requires us to connect buttonBarView outlet. buttonBarView type is ButtonBarView which extends from UICollectionView." 这是什么意思。 抱歉我的英语不好。

我希望你在下面的几行中谈论这个 post


  1. 根据文档,您的 ButtonBarPager 工作方式如下 gif。

  1. 要首先使用它,你必须在下面的代码中实现这个

    import XLPagerTabStrip
    
    class MyPagerTabStripName: ButtonBarPagerTabStripViewController {
        ..
    }
    
  2. 现在按键盘上的 cmd 键并单击 ButtonBarPagerTabStripViewController。它会将您导航到 ButtonBarPagerTabStripViewController.

  3. 有outlet buttonBarView(如下图)

  1. 现在您必须将此出口绑定到您想要用作 barView 的视图。检查下图。

希望你现在已经清除了。

Edit

如果您检查 ButtonBarView 的定义,那么它会扩展 UICollectionView 并且在描述 post 中也有同样的描述。查看下图以获得更多权限。