Actualmente utilizo una ventana UI personalizada para mostrar una vista de alerta personalizada para que se vea como el estilo Apple. Cuando lo elimino, no se desvanece automáticamente, sk decidí usar una animación UIView y cambiar el alfa a 0, luego lo eliminé, pero eso todavía no solucionó el problema. ¿Saben ustedes qué hacer?UIWindow animation
7
A
Respuesta
0
Prueba esto:
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:2.0];
[UIView setAnimationBeginsFromCurrentState:YES];
greyWindow.alpha = 0;
[UIView commitAnimations];
+0
lo siento, pero eso no resuelve el problema, pegado con teh mismo problema – G33kz0r
9
Por la ventana se desvaneció a fondo utilizado por mi propia clase AlertView personalizado (similar a lo que parece que está haciendo) hice un UIWindow costumbre y hizo caso omiso de makeKeyAndVisible, sino que también puedes hacer este contexto fuera de la clase:
- (void)makeKeyAndVisible
{
self.backgroundColor = [UIColor clearColor];
self.alpha = 0;
[UIView beginAnimations: @"fade-in" context: nil];
[super makeKeyAndVisible];
self.alpha = 1;
[UIView commitAnimations];
}
- (void)resignKeyWindow
{
self.alpha = 1;
[UIView beginAnimations: @"fade-out" context: nil];
[super resignKeyWindow];
self.alpha = 0;
[UIView commitAnimations];
}
Cuestiones relacionadas
- 1. Error desconocido [UIWindow endDisablingInterfaceAutorotation]
- 2. Offset en UIWindow addSubview
- 3. AppDelegate UIWindow addSubView en viewController
- 4. addSubview animation
- 5. UISearchBar Animation
- 6. translate animation
- 7. Pulsing Animation
- 8. makeKeyAndVisible y makeKeyWindow - UIWindow en iPhone
- 9. - UIWindow setRootViewController: equivalente en pre 4.0
- 10. La subvista UIView de UIWindow no gira
- 11. ¿Cómo responder a eventos táctiles en UIWindow?
- 12. Brush to Brush Animation
- 13. Android Simple TextView Animation
- 14. jQuery Tab Fade Animation
- 15. WPF Progressbar continue animation
- 16. Core Animation - Page flip
- 17. Android 3D animation
- 18. UIModalTransitionStyleFlipHorizontal animation duration?
- 19. Android: LinearLayout addView Animation
- 20. webkit css3 animation loop
- 21. Core Animation ... animaciones cíclicas?
- 22. Android Animation Flicker
- 23. Android ViewFlipper Animation
- 24. WPF UI Animation Library
- 25. jQuery backgroundColor animation
- 26. WPF Fade Animation
- 27. UITabBarItem Icon Animation
- 28. Android Gauge Animation Pregunta
- 29. Deshabilitar WinForms ProgressBar animation
- 30. Android Fragments and animation
esto debería funcionar ... Por favor enviar el código que está utilizando para hacer la animación – Abramodj