I'm trying to implement XLPagerTabStrip in my project. in the documentation it says "ButtonBarPagerTabStripViewController requires us to connect buttonBarView outlet. buttonBarView type is ButtonBarView which extends from UICollectionView." what this means. Sorry for my bad English.
I hope you're talking about this below lines that is mentioned in this post.
To use this first you have to implement this below code
import XLPagerTabStrip
class MyPagerTabStripName: ButtonBarPagerTabStripViewController {
..
}
Now press cmd key from keyboard and click on the ButtonBarPagerTabStripViewController
. It navigates you to the ButtonBarPagerTabStripViewController.
There is a outlet buttonBarView (as shown in below image).
Hope now you'r cleared.
Edit
If you check the definition of ButtonBarView
then it extends UICollectionView
and same is written in the description post. Check below Image for more clearance.