Skip to content

Instantly share code, notes, and snippets.

@billymeltdown
Last active August 29, 2015 13:56
Show Gist options
  • Save billymeltdown/9161656 to your computer and use it in GitHub Desktop.
Save billymeltdown/9161656 to your computer and use it in GitHub Desktop.
Coding Styles
- (IBAction)killingMeSoftlyWith:(id)thisSong
{
if (self.fugeez) // NEVER do this
self.jam = thisSong;
self.jam = [self somethingElse];
}
- (IBAction)killingMeSoftlyWith:(id)thisSong {
if (self.fugeez) { // Always use a brace here, even for the simplest code
self.jam = thisSong;
}
self.jam = [self somethingElse];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment