Skip to content

Instantly share code, notes, and snippets.

@rbrovko
Created November 13, 2015 07:53
Show Gist options
  • Save rbrovko/c77b0137661de72e87e0 to your computer and use it in GitHub Desktop.
Save rbrovko/c77b0137661de72e87e0 to your computer and use it in GitHub Desktop.
NSString *str = @"clear instalation! load database from bundle";
NSLog(@">> for lowercaseString: \"%@\"", str);
[DPFPSHelper getFPSMethod:NSStringFromSelector(@selector(uppercaseString)) withTarget:str];
[DPFPSHelper getFPSMethod:NSStringFromSelector(@selector(lowercaseString)) withTarget:str];
[DPFPSHelper getFPSMethod:NSStringFromSelector(@selector(capitalizedString)) withTarget:str];
str = [str uppercaseString];
NSLog(@">> for uppercaseString: \"%@\"", str);
[DPFPSHelper getFPSMethod:NSStringFromSelector(@selector(uppercaseString)) withTarget:str];
[DPFPSHelper getFPSMethod:NSStringFromSelector(@selector(lowercaseString)) withTarget:str];
[DPFPSHelper getFPSMethod:NSStringFromSelector(@selector(capitalizedString)) withTarget:str];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment