Hi there,
I'm currently building a chat system, and I want it to be so that when a chat message is received/sent it will appear in the chat, in the bottom of a list. Since each chat message might vary in length, and thereby determine the size of the widget, UIGrid is not an option since, to my knowledge, it is restricted the equal sized objects. Therefore I am using a UITable to do the job. My problem is that every time a new object is added to the list, I would like some way to scroll down the list. The table is placed under a UIScrollView, so I've been playing around adding momentum to the scrollview, but it seems to be a bad solution because it then jumps more than I want it to.
I would imagine someone have come across this issue before, and would appreciate any help or suggestions.
Best regards