作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将带有 UIViewAnimationCurveEaseIn 的 subview 添加到 MyMainView 中。我的 ViewController.xib 文件中有两个 UIView。MainView 中有一个按钮,当我单击该按钮时,我想使用 UIViewAnimationCurveEaseIn 调用另一个 View 。
在某些 iOS 应用程序中,新 View 从下方滑动出现。我认为这是与 UIViewAnimationCurveEaseIn 一起使用的。我也想这样做。如果我错了,请指导我该怎么做。或者我在哪里可以阅读该函数?
最佳答案
试试这个:
AViewController *aVC = [[AViewController alloc]initWithNibName:@"AViewController" bundle:nil];
//[self.navigationController pushViewController:aVC animated:NO];
[UIView transitionFromView:self.view toView:aVC.view duration:0.5f options:UIViewAnimationCurveEaseIn completion:^(BOOL doneDissolve){
[self.view addSubview:aVC.view];
}];
[aVC release];
关于ios - 如何在 iOS 中使用 UIView 的 UIViewAnimationCurveEaseIn?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11009765/
我正在尝试将带有 UIViewAnimationCurveEaseIn 的 subview 添加到 MyMainView 中。我的 ViewController.xib 文件中有两个 UIView。M
我是一名优秀的程序员,十分优秀!