0

我有这段代码,它根据在表视图中选择的选项将子视图设置为某个 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];

除了第一次切换视图。我可以设置一次坐标,但是有没有更快的方法,所以我不必在每次想要切换视图时都删除和添加视图。

4

1 回答 1

0

这能解决问题吗?

[[self mainView] removeFromSuperview];
[self setMainView:[[[self controllerArray] objectAtIndex:[indexPath row]] view]];
[self addSubview:[self mainView]];
[self setCurrentViewController:[indexPath row]];
[tableView deselectRowAtIndexPath:indexPath animated:YES];

EDIT1:如果它只是您要重置的位置,您可以添加一个属性 CGRect originalFrame 并在您添加子视图的代码中添加:

[self setMainView:[[[self controllerArray] objectAtIndex:0] view]];
[[self view] addSubview:[self mainView]];
self.originalFrame = [self mainView].frame;

然后当你想重置位置时使用:

[[self mainView] setFrame:self.originalFrame];

EDIT2:也许使用视图的“隐藏”属性就足够了?这样,您可以一次将它们全部保留为子视图,但只使一个可见,就像这样

[self mainView].hidden = YES;
[self setMainView:[[[self controllerArray] objectAtIndex:[indexPath row]] view]];
[self mainView].hidden = NO;
[self setCurrentViewController:[indexPath row]];
[tableView deselectRowAtIndexPath:indexPath animated:YES];

请记住在开始时添加所有子视图,并将它们的隐藏设置为 YES,除了您希望首先可见的视图。

于 2013-07-11T15:22:26.940 回答