XLPagerTabstrip . how can i update bar title from another tab

412 views Asked by At

Xcode 10.1 XLPagerTabStrip

I have 4 tab

tab1 . tab2. tab3. tab4

case1. if current index is tab1

 if let pagerTabStrip = self.parent as? ButtonBarPagerTabStripViewController {

   pagerTabStrip.buttonBarView.reloadData()

}

this code is work perfectly

case2. if current index is tab3 but i want to update title of tab1

if let pagerTabStrip = self.parent as? ButtonBarPagerTabStripViewController {

   pagerTabStrip.buttonBarView.reloadData()

}

this code didn't work .

how can i update bar title from another tab

0

There are 0 answers