Bro*_*die 4 iphone animation rotation ipad autorotate
是否可以关闭自动旋转的动画?我想让它旋转,但我只是不想要动画发生(就像一个即时开关).
如果你真的需要,只是使用setAnimationsEnabled的UIView:
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
[UIView setAnimationsEnabled:NO]; // disable animations temporarily
}
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
[UIView setAnimationsEnabled:YES]; // rotation finished, re-enable them
}
Run Code Online (Sandbox Code Playgroud)
这对我有用.当然,除非你有充分的理由这样做,否则不建议这样做.
| 归档时间: |
|
| 查看次数: |
2153 次 |
| 最近记录: |