I have:
-A UIView displaying a (background) image
- A UIView subclass UIContentView displaying text and stuff (my content)
I want:
- The background image to always persist and to define the 'overall' size of what I'm describing here
- On an 'external' trigger (assume a button press, happens elsewhere) my software calls a method like - (void)addNewContentView
UIContentView)aContentView;
- I want this to make the new UIContentView's width to be 90% of the Background view's, height to be 95% of the Background view's
- I want this new UIContentView to come into view from the bottom of the background view, centered horizontally, and slide up until it is centered horizontally
- On a second ..addNewContentView: I want the first one to move up and offscreen, pause briefly, and have the new one then come up from the bottom of the background view.
Further functionality I need is to then display a vertical display of 'dots' indicating how many pages I've displayed, and allow 2 finger swipe to 'go back' and 'go forward' between these pages in a history type of fashion. However, I think with an answer to the above I can work all that out.
-A UIView displaying a (background) image
- A UIView subclass UIContentView displaying text and stuff (my content)
I want:
- The background image to always persist and to define the 'overall' size of what I'm describing here
- On an 'external' trigger (assume a button press, happens elsewhere) my software calls a method like - (void)addNewContentView
- I want this to make the new UIContentView's width to be 90% of the Background view's, height to be 95% of the Background view's
- I want this new UIContentView to come into view from the bottom of the background view, centered horizontally, and slide up until it is centered horizontally
- On a second ..addNewContentView: I want the first one to move up and offscreen, pause briefly, and have the new one then come up from the bottom of the background view.
Further functionality I need is to then display a vertical display of 'dots' indicating how many pages I've displayed, and allow 2 finger swipe to 'go back' and 'go forward' between these pages in a history type of fashion. However, I think with an answer to the above I can work all that out.