Quote:
Originally Posted by BrianSlick
It works in the first case because "..." is a C string, so %s is correct. In the second case, it is now dealing with an NSString object, so it needs to be %@.
"..." = C string
@"..." = NSString
|
Okay, thanks for explaining that.