Ahmet
Ahmet

Reputation: 85

Where to display disclaimer in my ios application

I have developed an iphone application which will be available in Apple Store in a few weeks. I have used some public libraries and some public source code from internet. (Like enormego image gallery,library. And apple's Reachability class from Apple's official samples) Do i have to display any reference for them in somewhere in my application?(Like an about page) If yes where do you suggest to display that reference?

Upvotes: 2

Views: 2947

Answers (2)

Michael Dautermann
Michael Dautermann

Reputation: 89509

Officially, this would most likely depend on the License Agreements for each of the libraries and third party source code items you've incorporated into your work. Take some time to check their license agreements out.

Unofficially, since you're likely not in the U.S.A., you're out of reach of the court system and you yourself personally can't be sued. Whoever hired you could be, though.

As for where you should display any License Agreements, citations or disclaimers... that's completely application specific. You could display it in an "About" view or in the Settings Panel (which is a great suggestion by Matt in his answer) or in an info disclosure view (the kind that flips into view). It's completely up to you.

Upvotes: 0

mattjgalloway
mattjgalloway

Reputation: 34912

Take a look at this question:

I use something similar to that to automatically generate a settings bundle component to display the licenses in the settings panel. That seems to be the general way of doing this - Facebook do it like that as well for instance.

Upvotes: 3

Related Questions