Reputation: 266
I have submitted an app to appstore but unfortunately it got rejected due to following reasons:
The API which we have used in our project was a private API so please suggest me an alternative solution for the same.
Upvotes: 2
Views: 733
Reputation: 21805
setContentToHTMLString
is a private API method for UITextView
..
You should use a web view
which has a method loadHTML
.. this will solve the problem (since it is documented)
Upvotes: 3