I would like to load html string with tableview Cell.
So first I tried with NSAttributedString
, when I received an array from service I used for loop and added one more key with AttributedString
and then I displayed it. But it is taking too much time to create AttributedString
while records are more. Which is not acceptable in my app.
Now I am using UIWebView
and loading that HTML string to cell, but it makes my tableview jumpy and stuck while user scroll normally.
I have to show and save all records while user first do login, so I can not go with paging while service call.
What other approaches can I try?