A sample method that consumes NSString instance from SampleStringMethod.m's method.
- (void)storeUserToken:(NSString *)userToken | |
{ | |
if (nil == userToken) { | |
return; | |
} | |
const char * rawString = [userToken UTF8String]; | |
// Further code that uses rawString here... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment