views:

104

answers:

3

Hi friends

i am making an app for iphone and for that i am using certain free libraries.My problem is that i want to show their complete license of nearly 4-5 pages in my application bundle so that a user can open settings in iphone and see that licensing page at one time but i am unable to do it.I have read these Specifiers for making an application bundle .

PSGroupSpecifier

PSTitleValueSpecifier

PSTextFieldSpecifier

PSSliderSpecifier

PSToggleSwitchSpecifier

PSMultiValueSpecifier

PSChildPaneSpecifier

but i want to show a page full of text like Settings->General->About->Leagl just like in iphone through PSChildPaneSpecifier .Please help me how to do this>???

Thanks

A: 

The iPhone's "Legal" page is a custom preference controller which you can't use (not even with undocumented methods – you need to write a preference bundle in system locations which AppStore apps can't reach at all).

If you'd like to display the license, show it in the app.

KennyTM
A: 

I think you are going to need to use something like a UITextView, just make it non-editable. You can make in unobtrusive in your app but I think that is the only way to have 4-5 pages.

Adam Eberbach
A: 

I don't think there is a nice way of displaying this in the preferences bundle. Personally I would either provide a series of url links or bring the preferences into the app itself. There is a good framework on github here that you may be able to modify.

Jack