objective c - Reading File to Frameworks of Xcode -
I removed a file from the framework of my Xcode application and now I want to add the file back. However, when I try to add the file back, I get the following warning.
/ users / brian / download / iphone-exif-0-9.1 (1) / release- simulator-Iphonesimulator / libiphone-exif.a to / developer / CS193 / GraffitiMap / libiphone-exif .a. What's going on here?
When you add a file to the project, you can either copy it to the project Or just reference files elsewhere on your hard drive
When you removed the file from the project, you did not remove it from the project folder. Xcode can not write on that path because there is already a file, and gives you an error.
Just remove the file that is already from the explorer in your project folder.
Comments
Post a Comment