-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Intro to iOS] Assignment 3 - Twitter - Review My App #1
Comments
@codepath I just fixed the first bug. I was presenting the main navigation stack modally on top of the LoginViewController, but I never dismiss the modally presented view controller when I log out. This causes some weird state in which the a new view controller is modally presented on the LoginViewController even when the original modally presented view controller wasn't dismissed. I solved this problem for now by embedding the login view controller in a navigation controller and pushing the rest of the views on top of that instead of presenting modally. I still can't run the app in the simulator without the debugger, but it works perfectly on hardware. Sorry for any inconvenience (late submission). =) |
You were in time, and in general I start reviewing apps in the morning. It is best to have at max 1 view controller presented as a modal. --dirk |
that version of SwiftyJSON wasn't released yet for Cocoapods? |
This versions of SwiftyJSON is released for Cocoapods, but it needs to be built as a framework because it's written in Swift. When I use bdbergeron/BDBOAuth1Manager#35 As a workaround, I build all my pods as static libraries and manually added the SwiftyJSON project to my workspace. Have you tried this before? Any tips for a better way to do this? |
Also, if possible, I'd like some feedback on my specific implementations of:
What should I implement here?
|
I just spent a few hours trying to figure out why my app doesn't start up in the simulator without the debugger connected. Looks like when I don't import SwiftyJSON in any of the files, the issue goes away. I'm going to parse JSONs the good old fashioned way on the next assignment. This library has caused me enough trouble already. I would like to know if you have any better ideas for parsing JSON. Thanks, Randy |
Yeah, sometimes XCode can be a b*tch, sorry. Meanwhile I cant compile and run your app, so will just look at your sourcecode |
👍 nice work. The point of this homework was to explore a simple example of a full MVC application with a RESTful API. For each point in the homework feedback checklist, I'll either confirm that you're on the right track with the implementation, or I'll provide some feedback:
In general, you should challenge yourself to create visually polished applications. That's where you'll find all the rough edges of the iOS framework and earn the next level of mastery. -- dirk |
My app is complete with bugs. Please see README.md for a description of the bugs. I'm working on reverting to a version of the codebase without the bug. Thanks! /cc @codepath
The text was updated successfully, but these errors were encountered: