0

I have a lot of text in the Privacy Policy, in the format .doc and html. How can I show this text in my program in UIViewController in UILabel for example?

Yaroslav Babiy
  • 1
  • 1
  • 1
  • 1

1 Answers1

0

For HTML use the answer given in the comment above.

For .doc documents, it's better to convert it to HTML and embed the HTML resources in your app. I would recommend to use third party tools to convert .doc to HTML, though, because they do usually a much better job than the applications that generate .doc documents.

You may use pandoc for example.

If the privacy document should be updatable in the app, you better convert .doc to html on the backend.

You can use CSS defined in your app to format it for your needs.

CouchDeveloper
  • 18,174
  • 3
  • 45
  • 67