Created
March 12, 2014 21:43
-
-
Save EvgenyKarkan/9517024 to your computer and use it in GitHub Desktop.
Xcode 5.1 issue with unused variable.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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