This question gives a basic description of what I'm trying to do. Basically, I am animating offscreen content into view. There are several subviews I animate in this way, but they never occupy the same space at the same time. Now I'm having trouble being able to design content that starts offscreen. I have tried two ways, neither satisfactory:
- I stacked the subviews on top of each other where they will be viewed, and set the position to offscreen in the User Defined Runtime Attributes. I don't like this way, because I can't easily toggle which view I'm looking at, so designing is tough.
- I initially positioned the subviews off screen. This is annoying because you have to reposition a subview back onscreen before you can see it to design it.
How would this be done? How have you done accomplished something similar in the past?