This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Fri May 15 19:12:56 -0700 2009 | |
| |
README.markdown | Wed May 20 21:56:51 -0700 2009 | |
| |
assignment-1/ | Sun May 24 18:14:43 -0700 2009 | |
| |
assignment-2/ | Sun May 24 18:14:43 -0700 2009 | |
| |
assignment-3/ | Mon May 25 17:42:42 -0700 2009 |
README.markdown
iPhone Application Development - Stanford Program
NSLog: make sure you use NSString and not C strings.
NSLog(@"Name: %@", @"Nando Vieira"@); // this works
NSLog(@"Name: %@", "Nando Vieira"); // this crashes
Arrays need to end with nil; you can't have nil values except but the last item.
NSArray * letters = [NSArray arrayWithObjects: @"A", @"B", @"C", nil];







