I got this issue: Implicit conversion of an Objective-C pointer to ‘const char *’ is disallowed with ARC. Which way do I need to use to coreect this problem?
I got this issue: Implicit conversion of an Objective-C pointer to ‘const char *’
Share
Can’t tell without looking at the code but here are my guesses:
If you are passing an NSString you have to put
If you are passing a core object (Most of the raw objects that start with CF) you have to bridge it by either giving ownership or keeping it.