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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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.
|
||||
|
|

NSString*, notconst char *? – nielsbot Nov 7 '12 at 7:54