Any advice/suggestions regarding the simplest way to throw up disclaimer text after user click on information icon? This is for iPhone/iPad development. Jumping across to a separate XIB/controller might be overkill? (although perhaps it is the simpliest to setup?)
Requirements then would be:
- main screen has a small “info” button in one corner
- clicking on this button should bring up a “modal” view of disclaimer text
- should support scrolling (in case of a lot of text)
- should allow the user to then somehow dismiss and get back to main page
The simplest way I think is to present the text in
UITextView, which is scrollable, in a custom view controller that you present modally.You can even store the the text in. Now adding a button to dismiss it, and you are done.