Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Chris Collins
611 PointsHow to create a simple table view that populates with Twitter feeds?
I want to be able to sign in to Twitter through the iOS simulator then within the app itself have it open up and populate the table rows with my posts. Then I need to be able to click on the row and open the individual post in a new view controller. Any advice or guidance is helpful.
1 Answer
Jason Wayne
11,688 PointsDoubt that you test that on a simulator, you might need an actual device to do so. Reason being, the server needs to authenticate the user, and it's not possible in simulator. (not too sure you can test it out, but doubt it)
In regards on how to do so? Check out Twitter API (Application Programming Interface). With the API, you can make a request to obtain the data that you need and populate them onto your tableview.
Good luck! =]