gpt4 book ai didi

iphone - 如何制作管理两个 subview Controller 的父 View Controller

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:16:44 24 4
gpt4 key购买 nike

我正在努力为一个应用程序添加一些功能,该功能与 iOS 上 Springboard 上的应用程序切换抽屉非常相似。我希望能够有一个我可以点击的按钮,它将使 View 的 y 坐标动画起来,以便在底部显示另一个 View 。就像我说的,非常类似于 iOS 上的主页按钮双击功能。

环顾四周后,我似乎需要将两个 subview Controller 包装到一个父 View Controller 中。

我该怎么做呢?现有的 View Controller 非常复杂,所以我很难弄清楚从哪里开始。

最佳答案

我不知道您需要使用父 View Controller 来执行此操作。这段代码对我有用,可以做我认为你想做的事。我有一个 BOOL ivar 来跟踪底部 View 是否已显示,并使用主视图中的相同按钮在两种状态之间切换。

-(IBAction)slideInController:(UIButton *) sender {
if (viewRevealed == NO) {
next = [self.storyboard instantiateViewControllerWithIdentifier:@"Blue"];
next.view.frame = CGRectMake(self.view.frame.origin.x, self.view.frame.origin.y + self.view.frame.size.height, self.view.frame.size.width, 100); // my NextController's view was made 100 points high in IB.
[self.view.window addSubview:next.view];
[UIView animateWithDuration:.6 animations:^{
self.view.center = CGPointMake(self.view.center.x, self.view.center.y - 100);
next.view.center = CGPointMake(next.view.center.x, next.view.center.y - 100);
} completion:^(BOOL finished) {
viewRevealed = YES;
}];
}else{
[UIView animateWithDuration:.6 animations:^{
self.view.center = CGPointMake(self.view.center.x, self.view.center.y + 100);
next.view.center = CGPointMake(next.view.center.x, next.view.center.y + 100);
} completion:^(BOOL finished) {
[next.view removeFromSuperview];
viewRevealed = NO;
}];
}
}

我通常使用容器 View Controller 来做这种事情,但这很有效,而且非常简单。

关于iphone - 如何制作管理两个 subview Controller 的父 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14250499/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com