XCode Different Resources For Different Targets

青春壹個敷衍的年華 提交于 2019-12-19 03:08:23

问题


I am developing an iPhone app and there will be a Full as well as a Lite version of that app. In order get both bundles from the same source code and xcode project I added another target to the xcode project.

Now, I want to have the Lite target copy only a subset of the resource files to the bundle. But, xcode won't simply let me delete individual files from the "Copy Files to Bundle" build step, since I imported all my resources as folder references. I need this in order to maintain a directory structure in the resources directory.

How do I solve this problem? Any suggestions or ideas are greatly appreciated!

Flo


回答1:


In the left-hand panel of XCode, right-click on the "Groups & Files" bar at the top. Check "Target Membership".

Now you'll see a tick against every file that should be included in your current build target. Untick the ones you don't want, switch to your other target, and repeat.




回答2:


Instead of manipulating the "Copy Bundle Resources" step of your target, you can right-click resource files or groups (folders), choose "Get Info," and selectively leave stuff out of your Lite build under the Targets tabs of the info window for the file(s) you selected. Doing this on a group (folder) recurses the changes, so using resource groups (folders) is a nice easy way to make separate resources collections for separate builds.



来源:https://stackoverflow.com/questions/1023371/xcode-different-resources-for-different-targets

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!