You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nice work! We added this homework so that you'll have the experience building an app that's more similar in complexity to a production app. It's also useful to have practical experience building a container view controller, which is a more advanced topic. The optional account switching feature is interesting because you have to think about how TwitterClient is caching the access token to make sure it works correctly for multiple accounts. Displaying the account switching screen is implemented using custom view controller transitions.
A few notes after checking out the code:
I tried to run your app, but it wouldn't display the login sequence. Is master branch the right branch?
You should declare all unnecessarily public properties as private for better encapsulation.
Nice work specifying the Auto Layout constraints.
Nice work implementing the profile view controller so that it doesn't duplicate code in the timeline view controller.
Nice work encapsulating the properties of the custom cells that you added.
Nice work abstracting the hamburger controller so that it can be reused in other applications.
You should consider implementing the blurred table view header. There are several approaches here that are all valid. You can implement the header has a table header, a section header, or a cell. My preferred approach is to implement it as a table header, it's the easiest way to flow the image above the content. These detail touches are where you really learn the nooks and crannies of the framework.
Congratulations on finishing the final assignment! It's impressive to realize that in just four weeks, you've gone from building a simple tip calculator app to a polished MVC client.
/cc @codepathreview
Thanks!
The text was updated successfully, but these errors were encountered: