Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a very strange issue. I started an iOS App about three years ago (iOS-SDK 3.0), and since then went through the SDKs 4.0 and 5.0. Since 5.0 (or maybe 5.1) I suddenly started having problems with German special chars (ä ö ü ß).

Now I can't even initialize an NSString with special chars, this line:

NSString *str = @"abcäxyz";

gives the following warning:

Input conversion stopped due to an input byte that does not belong to the input codeset UTF-8

And this one:

NSLog(@"%@", strTemp);

gives:

abc

So it's stopping at the first special char. In other projects everything is fine. I can work with special chars without any problems.

Is it a configuration problem?

EDIT: Obviously it is a problem with the file encoding.

file -I myFile


is giving:

text/x-c++; charset=unknown-8bit

Trying to convert it with iconv gives me:

conversion from unknown-8bit unsupported

share|improve this question
Make sure that your source code is saved as UTF-8. – muffe2k Sep 7 '12 at 10:03
Aha, where can I check this? – user1423640 Sep 7 '12 at 10:08
Xcode -> preferences -> Text Editing -> Default text encoding. Make sure that this is set to UTF-8, if its not you may need to save all your files again in that encoding. Maybe your old projects were somehow saved in a wrong encoding and the default is now correct. – muffe2k Sep 7 '12 at 10:12
It says: Default text encoding: Unicode (UTF-8) – user1423640 Sep 7 '12 at 10:14
try testing your source file where you get the error in terminal with "file -I (that's a capital i) SourceFile.m" You get something like SourceFile.m: text/x-c++; charset=utf-8 – muffe2k Sep 7 '12 at 10:18
show 1 more comment

3 Answers

What happens when you use the UTF-8 codes to initialize the string? Like so:

 NSString *s = [NSString stringWithFormat:@"%C", 0xc39f]; // should be ß 

As far as I know you should also be able to do this, but haven't tested it:

  NSString *s = [NSString stringWithUTF8String:"0xc39f"];

Try those and see what happens. There's a number of sites around that keep UTF-8 code tables for special characters, e.g. this one.

share|improve this answer
0xc39f is the wrong sequence but its still giving out something. Still I cant understand why this happens only in this project, and not in newer ones. – user1423640 Sep 7 '12 at 10:07
1  
@pille the second one is wrong, that initializes the string to literal "0x39f". You should write @"\x039f" instead. – H2CO3 Sep 9 '12 at 15:30

As long as your file is encoded UTF-8, @"abcäxyz" should be fine, but the explicit form of embedding a literal unicode characters is \u????.

- (void)testGermanChar
{
    NSString *expected = @"abc\u00E4xyz";
    NSString *actual = @"abcäxyz";
    STAssertEqualObjects(expected, actual, @"the two strings should be equivalent");
}
share|improve this answer
up vote 0 down vote accepted

SOLVED: Changed the file encoding in Xcode: Click on the file you want to change the encoding of, then open the right panel (whats the name of this pane actually? any idea?) to edit the properties. There you see "Text Encoding" under "Text Settings". That is all.

share|improve this answer
What did you change it to, and how? – Spolto Sep 8 '12 at 12:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.