Suppose that I have an object named Topic. And inside that topic I can create Messages. The most recent messages needs to be the first message on the list (This is already done). My problem is that I need to show the messages in a view that can be scrolled either right or left (Right to show the older messages, and left to go back to the newer messages). Imagine an image collection that can be scrolled sideways in a ScrollView
, that how this should look like. Since the messages is being add by the user, I can't use UIImage
.
Any opinions how I should deal with this? or do you know any tutorial links that can help me? Thanks.