Skip to content

Instantly share code, notes, and snippets.

@EvgenyKarkan
Created March 12, 2014 21:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EvgenyKarkan/9517024 to your computer and use it in GitHub Desktop.
Save EvgenyKarkan/9517024 to your computer and use it in GitHub Desktop.
Xcode 5.1 issue with unused variable.
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
for (UITouch *touch in touches) {
if (touch != nil) {
[self.hero flyWithYLimit:self.size.height];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment