1 2 3 4 5 6 7 8 9
|
NSArray *myPaths = NSSearchPathForDirectoriesInDomains(NSDocumentationDirectory, NSUserDomainMask, YES); NSString *myDocPath = [myPaths objectAtIndex:0];
NSLog(@"myDocPath = %@",myDocPath);
NSString *filename = [myDocPath stringByAppendingPathComponent:@"uuid.plist"]; NSLog(@"filename = %@",filename);
|