gpt4 book ai didi

iphone - iOS-在 View 中打开框架(其他 View )时出现问题

转载 作者:行者123 更新时间:2023-11-29 05:06:10 25 4
gpt4 key购买 nike

我有一个 View ,以及该 View 中的一个按钮。当我按下此按钮时,我需要打开其他 View 作为框架。搜索我发现了这篇文章:iOS -- how do you control the size of a modal view controller?

我修改了这个,并在连接到按钮的 IBAction 中执行此操作:

View2Controller *screen = [[View2Controller alloc] initWithNibName:nil bundle:nil]; //Line add
UIView *myHalfView = [[UIView alloc] initWithFrame:screen.view.frame]; //Line modified by me
[self.view addSubview:myHalfView];
CGRect offScreenFrame = myHalfView.bounds;
offScreenFrame.origin = CGPointMake(0.0, CGRectGetMaxY(self.view.frame));

[UIView beginAnimations:nil context:nil];
myHalfView.center = CGPointMake(myHalfView.center.x, myHalfView.center.y - myHalfView.bounds.size.height);
[UIView commitAnimations];
[myHalfView release];

但是当我按下那个按钮时什么也没有发生。我已经验证了代码在逐步调试中的运行。谢谢。

最佳答案

看看这真是太棒了......也请阅读那里的评论。

http://humblecoder.blogspot.com/2009/04/iphone-tutorial-navigation-controller.html

关于iphone - iOS-在 View 中打开框架(其他 View )时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5107280/

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