抽取成一个方法:
-(void)addChildVcViewIntoScrollView:(NSUInteger)index
1.从父控制器的子控制器数组中取出view
UIView *childVcView = self.childViewControllers[index].view;
2.设置frame
childVcView.frame = CGRectMake(index * self.scrollView._width, 0, self.scrollView._width, self.scrollView._height);
3.添加到scrollview上
[self.scrollView addSubview:childVcView];
主要是搞清index,取哪个view是由按钮对应的索引决定的,这个根据按钮从数组中很容易取出来,从父视图的subViews中取
NSUInteger index = [self.titlesView.subviews indexOfObject:titleButton];
规律:偏移量x等于当前视图的x坐标