H HarryWorksInc macrumors regular Original poster Feb 21, 2010 179 0 Mar 4, 2010 #1 Hey, does anyone know how to save into a .txt file? I know how to read them just need to write.
fernandovalente macrumors 6502 Aug 29, 2008 366 0 Third world **** hole, I mean, Brazil Mar 4, 2010 #2 HarryWorksInc said: Hey, does anyone know how to save into a .txt file? I know how to read them just need to write. Click to expand... Code: NSError *error; NSData *data = [myString dataUsingEncoding:NSUTF8StringEncoding]; BOOL success = [data writeToFile:PATHTOFILE options:0 error:&error]; if(!success){ NSAlert *a = [NSAlert alertWithError:error]; [a runModal]; } Hope that helps
HarryWorksInc said: Hey, does anyone know how to save into a .txt file? I know how to read them just need to write. Click to expand... Code: NSError *error; NSData *data = [myString dataUsingEncoding:NSUTF8StringEncoding]; BOOL success = [data writeToFile:PATHTOFILE options:0 error:&error]; if(!success){ NSAlert *a = [NSAlert alertWithError:error]; [a runModal]; } Hope that helps