gpt4 book ai didi

iphone - 从 nib 文件加载时动画 View

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:18:09 25 4
gpt4 key购买 nike

我有一个加载包含 View 的 nib 文件的方法:

[[NSBundle mainBundle] loadNibNamed:@"NewView" owner:self options:nil]; 

我想知道是否可以在加载 View 时添加一个简单的过渡。我已经搜索了 Internet,但我找不到任何东西。

最佳答案

有很多方法可以呈现 View 并使其动画化。

您可以使用 loadNibnamed 创建:

How to load a UIView using a nib file created with Interface Builder

使 View 动画化的一种方法是以模态方式呈现它。这将从底部开始动画:

[[self navigationController] presentModalViewController:navController animated:YES];

这些帖子展示了如何使用 modalTransitionStyle 更好地控制它的动画

How can I change the animation style of a modal UIViewController?

iPhone - presentModalViewController with transition from right

另一种选择是创建一个 View ,将其作为 subview 添加到当前 View 并为框架设置动画。如果您只是加载 View ,请考虑使用 UINib - 它已添加到 iOS 4.0 和缓存中。它的性能翻倍。

UINib *nib = [UINib nibWithNibName:@"TestView" bundle:nil];
UIView *myView = [[nib instantiateWithOwner:self options:nil] objectAtIndex:0]];

然后,您可以将其添加为 subview 。

如果您想在 View 中为 subview 设置动画,请参阅本教程:

http://www.raywenderlich.com/2454/how-to-use-uiview-animation-tutorial

具体来说:

CGRect basketTopFrame = basketTop.frame;
basketTopFrame.origin.y = -basketTopFrame.size.height;

CGRect basketBottomFrame = basketBottom.frame;
basketBottomFrame.origin.y = self.view.bounds.size.height;

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5];
[UIView setAnimationDelay:1.0];
[UIView setAnimationCurve:UIViewAnimationCurveEaseOut];

basketTop.frame = basketTopFrame;
basketBottom.frame = basketBottomFrame;

[UIView commitAnimations];

关于iphone - 从 nib 文件加载时动画 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7854158/

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