I am working on a iphone app, and I am just learning iphone app development for weeks, so I have some questions here : this app will load many posts from a remote server, and the post is consist of one text field, one image, and three buttons (good, bad and comment). There are thousands of posts on the server, so I thought the app will load three posts each time, and when the user scroll up the page, it will continue to load the previous post, and if the user scroll down the page, it will continue to load the next post. For being a newbie, I don't know what View is good for it, any advice is appreciated.
I have tried :
- UIView + UIScrollView + Label / Image / Buttons (post)
- UIView + UITableView + UITableViewCell (Label, image, buttons)
The first one is fine, and the second one, I really don't know how to make it in the second option..so what view pattern is good for this?