-
Notifications
You must be signed in to change notification settings - Fork 27
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
KPicart-HW4 #18
base: master
Are you sure you want to change the base?
KPicart-HW4 #18
Conversation
@synthesize done = _done; | ||
|
||
|
||
-(id)initWithName:(NSString *)name done:(BOOL)done { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Like the custom initializer method. :D
Overall, nice work @krishnapicart. Your code is clear, generally expressive, and well organized. Looks like you went beyond the scope of the homework too, glad to see that you were able to get creative with it. 😄 Some thoughts:
|
Hey T- thx for the smackDown!
lol-- the work is based off a video tutorial series i found
Your review was helpful and I will be implementing your Hey T- thx for the smackDown! lol-- the work is based off a video tutorial series i found Your review was helpful and I will be implementing your -------- Original Message -------- Overall, nice work @krishnapicart. Your code is clear, generally expressive, and well organized. Looks like you went beyond the scope of the homework too, glad to see that you were able to get creative with it. Some thoughts: Nice job separating concerns and organizing your code. In the future, avoid committing unused files (e.g. xTableViewController.h) If you make commits as you go, it helps show the progress of your thinking and provides good fallback points in case you need to change something. More small commits > a few big commits. Consider using delegation to send messages from the edit view back to the index view. This seems to be the accepted way to send messages between two view controllers (although maybe @mikekavouras has some better insight here). Try to avoid committing too much extra whitespace (2 blank lines or more is usually too much) and any unused (incl. commented-out) code. Since this is just "noise", it only clutters up your files. —Reply to this email directly or view it on GitHub. |
Haha, no, not a smackdown. Constructive criticism! At least, that's how I intended, hope it came off that way. You're off to good start! |
thx TYour comments were really well received, i jst can't resist a good joke...and The "smackDown" piece was TOO good 2 pass up. i'll try to refrain from such deviations in the future.catch u later!krishna -------- Original Message -------- Haha, no, not a smackdown. Constructive criticism! At least, that's how I intended, hope it came off that way. You're off to good start! —Reply to this email directly or view it on GitHub. |
No description provided.