I want to update my indicator info on some events happening in the child view controllers. How can we achieve this?
Asked
Active
Viewed 1,050 times
1 Answers
4
if let pagerTabStrip = self.parent as? ButtonBarPagerTabStripViewController {
pagerTabStrip.buttonBarView.reloadData()
}
For anybody looking for a solution to this. Please refer here.

pacification
- 5,838
- 4
- 29
- 51

Sayalee Pote
- 511
- 5
- 22
-
1Updates the value. Worked for me for values. – Sayalee Pote Nov 22 '18 at 12:55