What is best way to show text from chat?

Hello,

I am writing my own chat routine in my app and have all of the back end part done on the server. I am using JSON to retrieve any new messages to be added to the chat in the app. What is the best way to show the text? Do I put a listView and add text at the bottom and have it scroll to the bottom each time?

Thanks,

Warren

I’m using tableview for chat and scrolling to bottom, works ok.

How are you setting the row height for each chat? I assume you can get the text content height and use that.

Ahh forgot about that, that was indeed a hassle. I’m rendering the text object with same size etc, checking the height, then removing the object and then adding to the tableview :frowning:

I’m using tableview for chat and scrolling to bottom, works ok.

How are you setting the row height for each chat? I assume you can get the text content height and use that.

Ahh forgot about that, that was indeed a hassle. I’m rendering the text object with same size etc, checking the height, then removing the object and then adding to the tableview :frowning: