Hey RickMaddy, thanks for the tip!!! Helped a lot.
Here is another tip: How to maintain two Default.png files, one for the full version and another for the Lite version in the same project:
- Create a Default.png file for the full version and a DefaultLite.png file for the Lite version. Add both to the Resources folder in your xcode project.
- Right click on your lite app Target, click Add, New Build Phase, New Run Script Build Phase.
- Paste this code in the script field:
Code:
mv ${TARGET_BUILD_DIR}/${CONTENTS_FOLDER_PATH}/DefaultLite.png ${TARGET_BUILD_DIR}/${CONTENTS_FOLDER_PATH}/Default.png
- Move the "Run Script" phase you just created right after to "Copy Bundle Resources"
That's it, everytime you build the project with the Lite app target it will copy the DefaultLite.png and rename it to Default.png in your build dir.