Reputation: 11
I tried to run my program in a MacBook air with OS Lion and I cannot find the files generated, where is the new location to storage the text files? Above they were storage in the file build->Debug but in Lion I have not idea. Can somebody help me, please?
Upvotes: 0
Views: 26
Reputation: 318774
This has nothing to do with Lion. Xcode puts generated files in:
~/Library/Developer/Xcode/DerivedData
where ~
is your home directory.
Keep in mind that the ~/Library
directory is hidden by default in Lion (and later).
Upvotes: 1