Skip to content

Instantly share code, notes, and snippets.

@dokinkon
Last active August 29, 2015 14:24
Show Gist options
  • Save dokinkon/81bdad21022de167d7a2 to your computer and use it in GitHub Desktop.
Save dokinkon/81bdad21022de167d7a2 to your computer and use it in GitHub Desktop.
Coding Style of objective-c
// Private member variable
NSString * _name;
int _age;
- (void)theFunction {
if (b>1) {
for (int i=0;i<3;i++) {
NSLog(@"Foo");
}
} else {
NSLog(@"boo");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment