"Value is not key-value coding compliant for the key overviewLabel"
What is/caused the issue?
Broken IBOutlets. You deleted the outlet in the code but forgot to delete in the Storyboard, or vice versa.
Where do errors appear in Xcode?
(Where do we look to find them?)
The "Log" (the right half of the bottom pane in Xcode)

Which delegate method in the ViewController.m tells the tableview how many cells to show?
[tableView numberOfRowsInSection: ...];
This view is used to display any text on the screen.
UILabel
This runs the app again
Cmd+R
Unrecognized selector sent to instance

Calling a function that does not exist.
Or, Broken IBAction. You deleted the IBAction function in the code but forgot to delete in the Storyboard, or vice versa.
A method that prints any string to the error console.
NSLog()
Two lines of code you need in your ViewController.m's [viewDidLoad... ] method in order to power a TableView.
self.tableView.dataSource = self;
self.tableView.delegate = self;
What does a segue do?
Navigate from one screen to another.
This comments-out your highlighted code
Cmd+/
What's wrong with this code block?
(tableview isn't reloading)

"[tableView reloadData];" call happens too soon.
It needs to be moved to line 42-43 to wait until new tweets are loaded from the server before reloading the tableView.

How to freeze the app at one line of code, to inspect the current value of variables at that moment in time?
Breakpoints
Which delegate method in your ViewController.m tells the tableView how to configure the content within a cell, just before the cell is displayed on the screen?
[tableView cellForRowAt...]
This type of controller is used to display a Back button on top of each screen embedded within it.
UINavigationController
Quickly search for a file in your project
Cmd+Shift+O
Incompatible pointer types assigning to 'UITableViewDelegate *' from 'MoviesViewController *'

Forgot to implement the <UITableViewDelegate> protocol.

You see an error about "overviewLabel" in your log, and want to narrow down where the problematic code must be.
What's the keyboard shortcut to search the whole project for any phrase like "overviewLabel" ?
Cmd+Shift+F
Which delegate method can be created to handle what happens when a user taps on your tableView cell?
[tableView didSelectRowAtIndexPath...]
The type of view/element that we used to select and change the Tip amount %
UISegmentedControl
Clean your project
Cmd+Shift+K
You get a super vague "signal SIGABRT" in AppDelegate.
What dynamic/specialized breakpoint can you add to narrow down the issue to a specific
line of your code.
Exception Breakout in the Breakpoint Navigator (left pane)
You get a super vague "signal SIGABRT" in AppDelegate.
How do you add an Exception Breakout to your project to help narrow down the issue to a specific erroneous line of your code?

(for those who are looking ahead and checked out Week 2 things)
When using Auto Layout to make a cell's height dynamic based on the length of the Tweet within it, what line of code is required in your ViewController.m to tell the TableView that the rowHeight should be Automatic?

To design a single TableView Cell that can be re-used in multiple Storyboards across your app, you can design that Cell in a ___ file.
XIB file
This opens the side-by-side Assistant Editor
Ctrl+Option+Cmd+Enter