I am a Mac user and I am trying to develop an app for iPhone, which backs up the address book and send with an email. It sends the datas as .csv file.
When I open this .csv file in Mac Excel and in Windows Excel, it seems very different. forexample, the codes shown below all makes the difference...
When I do like that:
[stringToWrite appendFormat:@";"];
in Windows Excel.... it shows ok. I mean in Excel it shows like that;
name (other cell) phone (other cell) mail
name2 (other cell) phone2(other cell) mail2
but in Mac Excel it looks like;
name;phone;mail (all in one cell)
name2;phone2;mail2(all in one cell)
When I do the code like that;
[stringToWrite appendFormat:@","];
in Mac Excel, it shows ok. I mean in Excel it shows like that;
name (other cell) phone (other cell) mail
name2 (other cell) phone2(other cell) mail2
but in Windows Excel it looks like;
name,phone,mail (all in one cell)
name2,phone2,mail2(all in one cell)
Can anyone help please at that point?