我有这段代码,它根据在表视图中选择的选项将子视图设置为某个 ViewController 的视图。这是代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self setMainView:[[[self controllerArray] objectAtIndex:[indexPath row]] view]];
[self setCurrentViewController:[indexPath row]];
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
最初添加子视图的代码如下所示:
[self setMainView:[[[self controllerArray] objectAtIndex:0] view]];
[[self view] addSubview:[self mainView]]
问题是更改子视图的代码不会更新子视图,因此视图永远不会真正加载。我可以通过将视图从子视图 ( [[self mainView] removeFromSuperview]
) 中删除来重新加载视图,但这会导致它重新加载到中心。子视图可以根据用户手势移动,我想把它放在同一个地方。有没有办法重新加载子视图,或者我必须跟踪子视图的位置,然后在删除它并再次添加后设置它。
编辑: 一个有趣的注释:此代码完美运行(视图保持在先前的坐标):
[[self mainView] removeFromSuperview];
[self setMainView:[[[self controllerArray] objectAtIndex:[indexPath row]] view]];
[[self view] addSubview:[self mainView]];
[self setCurrentViewController:[indexPath row]];
[tableView deselectRowAtIndexPath:indexPath animated:YES];
除了第一次切换视图。我可以设置一次坐标,但是有没有更快的方法,所以我不必在每次想要切换视图时都删除和添加视图。