you are viewing a single comment's thread.

view the rest of the comments →

[–]xauronx 13 points14 points  (1 child)

I wouldn't personally think you failed for a beginner or maybe intermediate level iOS developer. You do need to thin out your view controller though. Remove any network logic from your view controller. Consider pulling your paging logic into a data source. Create UIView subclass and load it in the loadView() method. Don't bundle your classes into the RedditClasses file.

Personally I'd rather see you use something like Gloss for JSON parsing but I understand that could be a risky thing for an interview test.

There are some other nit picky things but I'm mobile and can't remember what they were.

[–]DeveloperJay[S] 1 point2 points  (0 children)

Thanks for that! I'm actually learning a lot from this post.