Question: How do I got a progress bar to update on it’s own?
Answer: Use a NSTimer with a UIProgressView. Stack Overflow
Question: What method is called after a UITableViewCell is tapped?
Answer: didSelectRowAtIndexPath
Question: What’s the thing that allows you to toggle a playlist sort by artist, album and title?
Answer: UISegmentedControl. It’s like a switch that has more than 2 settings.
Question: How should I make a static table view?
Answer: Use a table view with static cells, do not try to make a table view with dynamic cells. It’s a major waste of time.