¿Cuál es el valor predeterminado de (NSTimeInterval)duration
para UIModalTransitionStyleFlipHorizontal
, que está relacionado con -[UIViewController presentModalViewController:animated:]
?UIModalTransitionStyleFlipHorizontal animation duration?
Respuesta
Si se está preguntando lo que el valor predeterminado de la duración es de una animación cuando no se establece explícitamente, la respuesta se proporciona en las cabeceras marco:
* If the `duration' property of the animation is zero or negative it * is given the default duration, either the value of the * `animationDuration' transaction property or .25 seconds otherwise.
lo tanto, ya no puede establecer el valor en la llamada al método, debe tomar un cuarto de segundo para ejecutar la animación.
Gracias. De hecho, creo, a juzgar por el ojo, que es más como '0.75' para' UIModalTransitionStyleFlipHorizontal'. – ma11hew28
Estoy de acuerdo. Me sorprendió encontrar esto en el encabezado. Me pregunto si está encadenando 3 animaciones para obtener el efecto final. –
- 1. jQuery Animation Delay
- 2. Brush to Brush Animation
- 3. WPF Fade Animation
- 4. Parpadeante jQuery .animation()
- 5. jQuery Tab Fade Animation
- 6. jQuery Animation Delay Agregar una clase
- 7. addSubview animation
- 8. UISearchBar Animation
- 9. translate animation
- 10. Pulsing Animation
- 11. UIWindow animation
- 12. Android Animation: ¿esperar hasta que termine?
- 13. Android Simple TextView Animation
- 14. WPF Progressbar continue animation
- 15. Core Animation - Page flip
- 16. Android 3D animation
- 17. Android: LinearLayout addView Animation
- 18. webkit css3 animation loop
- 19. Core Animation ... animaciones cíclicas?
- 20. Android Animation Flicker
- 21. Android ViewFlipper Animation
- 22. WPF UI Animation Library
- 23. jQuery backgroundColor animation
- 24. UITabBarItem Icon Animation
- 25. Android Gauge Animation Pregunta
- 26. Deshabilitar WinForms ProgressBar animation
- 27. Android Fragments and animation
- 28. usando android animation-list
- 29. Android ImageView Animation
- 30. Android Animation - Flip
[NSTimeInterval] (http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Miscellaneous/Foundation_DataTypes/Reference/reference.html) es un doble (typedef) que especifica el número de segundos la animación debería durar. Aparte de eso, no estoy seguro de lo que estás preguntando. – titaniumdecoy