私はMacユーザーで、名簿をバックアップしてメールで送信するiPhone用のアプリを開発しようとしています。データを.csvファイルとして送信します。
この.csvファイルをMacExcelとWindowsExcelで開くと、非常に異なっているように見えます。たとえば、以下に示すコードはすべて違いを生みます...
私がそれを好きなとき:
[stringToWrite appendFormat:@";"];
WindowsExcelでは....OKと表示されます。つまり、Excelではそのように表示されます。
name (other cell) phone (other cell) mail
name2 (other cell) phone2(other cell) mail2
しかし、MacExcelでは次のようになります。
name;phone;mail (all in one cell)
name2;phone2;mail2(all in one cell)
私がそのようなコードを実行するとき;
[stringToWrite appendFormat:@","];
Mac Excelでは、OKと表示されます。つまり、Excelではそのように表示されます。
name (other cell) phone (other cell) mail
name2 (other cell) phone2(other cell) mail2
しかし、WindowsExcelでは次のようになります。
name,phone,mail (all in one cell)
name2,phone2,mail2(all in one cell)
その時点で誰か助けてもらえますか?