views:

14

answers:

1

I'm using NSKeyedArchiver to save an object. I didn't write out a full path in the path argument so my file is being written somewhere in the Apple iPhone simulator.

What directory is my file going to?

[NSKeyedArchiver archiveRootObject:self toFile:@"Vanilla"];

Thanks!

mj

A: 

I figured it out. It was writing it to root "/". mj

mj_