要获取SB里的Container,就在内嵌Container的那个View or Controller对应的代码里使用
UIView *container = [self.view viewWithTag:CONTAINER_TAG];
若想要移动这个Container,需要使用
container.bounds = newFrame;
获取某一Controller下所有Container对应的二级controller,可以使用:
for (id controller in self.childViewControllers)
并配合使用 [ controller class ] 来判断对应的是哪一个Controller