En la aplicación de iPod en el iPhone, hay un UIBarButtonItem en la barra de herramientas superior derecha que alterna entre la canción y las listas de pistas del álbum. Cuando selecciona el botón, el botón realiza una animación invertida.¿Cómo se hace una animación de UIBarButtonItem?
¿Hay una manera de hacer esto con:
CGContextRef context = UIGraphicsGetCurrentContext(); [UIView beginAnimations:nil context:context]; [UIView setAnimationTransition: UIViewAnimationTransitionFlipFromLeft forView:[self superview] cache:YES];
¿Es necesario hacer una UIBarButtonItem con initWithCustomView vs initWithImage para lograr esto?
+1 esta es una manera genial que le permite seguir siendo el OS l'n'f - Me gusta –