You should be able to access the viewcontroller's child through parent's childViewControllers property. (Or using the segue as pointed out above).
Eg:
BlueViewController *bvc = self.childViewControllers[0]; //assuming you have only one child
[bvc someMethod];