I have Constants NSString, that I want to call like:
[NewString isEqualToString:ConsString];
Any wrong code here?
I got this warning:
sending 'const NSString *' to parameter of type 'NSString *' discards qualifiers
well, how should I do then?
|
I have Constants NSString, that I want to call like:
Any wrong code here? I got this warning:
well, how should I do then? |
|||||
|
|
You should declare your constant string as follows:
instead of:
The former is a constant pointer to an Using a The method Besides, |
|||||||||||||||||||||
|
|
I found a workaround: Just append the kSomeConstantString like the way shown below:
I guess: This will convert the const pointer to NSString * |
||||