Hey,
Just wanted to point out that there's a way better way to update the tabName.
Calling InitializeTabs is not optimal at all :)
You can just do:
tabView.GetComponent<TabView>().tabs[0].itemText.text = "yourTitle"
Of course here I've used tabs[0], but if it's your second tab or third, you would use tabs[1], tabs[2] etc...
~ Yohan