iphone - Animating multiple UIViews at once using CoreAnimation -
I am using UIImageView as a background image and have many UIButtons on it. Now I want to move UIImageView (with all the buttons on it) with a smooth animation (using CoreAnimation).
I could not find a container or grouping element in IB, so a way to move all the scenes at once?
Thank you in advance!
If you have them go and keep: [myImageView addSubView: myButton]; So you can just move my image to Viz.
However :) It seems that you should rethink the design a bit. If this button is a complete scene that addresses the user's button then the button holding the button gets together?
Perhaps a UIViewController is a better way to add visual elements (buttons, sliders,
Edit:
When I do this in IB, how should I see it from your perspective? In IB, you have a UIViewController on "Below" You should add a View, Button Should be included in that view, which is an UVIUI controller (one in "below") to make an IBOuttlet reference to edit by editing in XCode. Now you have a reference to the view (the button with reference) in Xcode and you can move it around
Comments
Post a Comment