Greg
Greg

Reputation: 34798

simplest way to throw up disclaimer text after user click on information icon?

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:

Upvotes: 2

Views: 162

Answers (1)

user756245
user756245

Reputation:

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.

Upvotes: 1

Related Questions