12

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.

Sergey Kopanev
  • 1,496
  • 3
  • 17
  • 29

1 Answers1

26
NSStringEncoding encoding;
NSError* error;
NSString* myString = [NSString stringWithContentsOfFile:myFilePath usedEncoding:&encoding error:&error];
Morion
  • 10,495
  • 1
  • 24
  • 33