5

I was able to add a new section "Legal" in my app settings using Settings.bundle, and the content was displayed as group titles. There are links in the legal statement but cannot be clicked. How to make these links clickable?

  • 1
    How do you show the `Settings.bundle`? Can you show us your codes? – Raptor May 27 '13 at 03:41
  • The method I used [best way to add license section to iOS settings bundle](http://stackoverflow.com/questions/6428353/best-way-to-add-license-section-to-ios-settings-bundle/6453507#6453507) – Tianfei Zhu May 27 '13 at 05:40

1 Answers1

1

I don't think there's any way to use hyperlinks in Settings.bundle.

Earlier stackoverflow question.

A legal statement isn't a setting - why not just have a separate view in your app with the statement?

Community
  • 1
  • 1
nikkumang
  • 1,615
  • 2
  • 17
  • 34
  • There are links in Settings > General > About > Legal. – Tianfei Zhu May 27 '13 at 05:52
  • It's possible to [display text using FooterText below a group](http://stackoverflow.com/questions/4192526/iphone-how-to-add-normal-text-to-settings-bundle) but AFAIK there's no way to embed a hyperlinks within that text. AFAICR I've only seen hyperlinks in iOS built-in apps e.g. Facebook, Twitter. – nikkumang May 27 '13 at 06:29
  • Thanks, I just want to keep it simple and will not use a separate view. I'll use the legal statement without hyperlinks. – Tianfei Zhu May 27 '13 at 08:08