views:

1407

answers:

2

Hello, all!

I've got problem with use + stringWithContentsOfFile:usedEncoding:error:

My problem in usedEncoding:(NSStringEncoding *)enc I don't know how can i set pointer to encoding. If i make it - programm is fail.

For example, in similar function we have encoding:(NSStringEncoding)enc - without pointer!

I want loading file (file has encoding ISOLatin1) in NSString and use NSString as UTF8String.

how can i make it ?

thanks.

+7  A: 
NSStringEncodeing encoding;
NSError* error;
NSString* myString = [NSString stringWithContentsOfFile:myFilePath usedEncoding:&encoding error:&error];
Morion
Except, the first variable type is spelled NSStringEncoding (no 'e')
Ben Bederson
A: 

thanks all. it's working fine.

Sergey
This should not be an answer, but a comment on the answer you have accepted.
Brad Larson