Created
September 28, 2012 07:44
-
-
Save PaulTaykalo/3798498 to your computer and use it in GitHub Desktop.
This puts NSLog at start of each function in the class
This file contains 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
// This puts NSLog at start of each function in the class | |
FROM: | |
(^[-\+][^\{]+)\{ | |
TO: | |
$1\{NSLog(@"%s->%@",__FUNCTION__,@"Called"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment