iphone - Xcode sometimes forget resources -



i'm experiencing huge problem. i've got 1 ios app use base-ground others. copy project in different directories , overwrite graphs resources others same name , same sizes in res.

the problem xcode (both 3 , 4) forget of them, if present , linked in resources group. i've noticed present in "copy bundle resources" of target. error happens on device , simulator.

it happens images 1 different suffix such as: ~ipad,@2x

some clues:

-deleted .svn hidden folders

-the image not referenced in xib, in code

-the name correct ( i'm aware simulator isn't case sensitive while device is)

-the target of file set corrctly in , in "copy bundled resources"

-changing name of file (and code, of course) doesn't change weird behavior

-"touch" file doesn't change

-clean target doesn't make difference

-restore simulator doesn't make difference

-file isn't localized

-deleting file , add again doesn't affect problem

-inside .app package image present

is there hidden directory or something????or plist referenced resources?

thanks help, andrea

solved!!!! i've delete .svn folders inside main project folder. open project, clean targets, restored iphone simulator. seems ok.

how show .svn folders. in terminal write:

defaults write com.apple.finder appleshowallfiles true  killall finder 

to restore previous config:

defaults write com.apple.finder appleshowallfiles false  killall finder 

hope helps. ciao, andrea


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -