tableView vs scrollView use case

Question to the devs, for a use case of say creating a newsfeed with multiple posts which all contain large images, some text, and a few tap events… which approach would be best? scrollView or tableView?

A tableView is a specialized scrollView that supports content in rows. If the rows benefit you and you want to treat each row as a discrete object, then tableView is the way to go. 

Thank you Rob!

A tableView is a specialized scrollView that supports content in rows. If the rows benefit you and you want to treat each row as a discrete object, then tableView is the way to go. 

Thank you Rob!