私のアプリケーションでは、
プログラムで .txt ファイルを作成しました。ファイルの作成に成功しました。しかし、\n はこのファイルでは機能しません。
これには次のコードを使用します。
NSString *str=[NSString stringWithFormat: @"line 1 \nline 2 \nline 3"];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *pdfPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.txt",@"REFINESEARCH"]];
[str writeToFile:pdfPath atomically:YES];
Mac で REFINESEARCH.txt ファイルを開くと、正常に動作します。しかし、Windows OSでこのファイルを開くと. このように見えます..
\n ここでは機能していません。これを解決するには?