Twitty 
Step by step description of how to build a twitter clone. To begin download starter project
GUI part
- Make sure to have all the connections lined up.
- Setup the connections for tableView.
- Inherit the UITableViewDelegate and UITableViewDataSource to TweetsViewController (where tableView is setup as an outlet)
- When inheriting, click on the fix to implement numberOfRowsInSection and CellForRowAt functions
- set delegate and dataSource for tableView to self (which is TweetsViewController)
- Create a new TweetCell cocoa touch class
- set the table view cell identity to Tweet Cell
3 Add 1 UIImage, and 2 UILabel (for Username and Tweet)
- Set up the UIImage and UILabel outlets as properties onto the TweetCell Class
Application
Signning in
- In the Login view controller
Signning Out