i used to say in obj-c
[self.tabBarController.viewControllers objectAtIndex:1];
but now in swift no ObjectAtIndex any more
sel
You don't need objectAtIndex in swift, just use the subscript operator:
objectAtIndex
subscript
self.tabBarController.viewControllers[1]