When and how to use Aggregate Target in xcode 4

巧了我就是萌 提交于 2019-12-18 04:41:39

问题


I was trying to look for an example of using an Aggregate Target in Xcode4, including its purpose and why a developer should use it.

Do you have any reference link, especially from Apple Developer web site?


回答1:


Aggregate Target

Xcode defines a special type of target that lets you build a group of targets at once, even if those targets do not depend on each other. An aggregate target has no associated product and no build rules. Instead, an aggregate target depends on each of the targets you want to build together. For example, you may have a group of products that you want to build together. You would create an aggregate target and make it depend on each of the product targets. To build all the products, just build the aggregate target.

An aggregate target may contain a custom Run Script build phase or a Copy Files build phase, but it cannot contain any other build phases. Any build settings that the aggregate target contains are not interpreted but are passed to the build phases that the target contains.

Source




回答2:


One reason I use an aggregate target is to package up my application into a .dmg or .zip for distribution. I set the application's target as a dependency, then run a script phase. You could also build and run other tools that either modify the app or help with the packaging, etc.




回答3:


An aggregate target does not directly generate a build product. This target does not have Build Rules, but it has Build Phase with Dependencies, Copy Files Phase and Run Script Phase. It can help you to manage other targets to build a product. This target can be a dependency of other target or can be called outside via a related schema.

For example aggregate target is used to create a Universal framework, Umbrella framework, auto-versionning, embedding frameworks in iMessage apps with Xcode 8.0

To create aggregate target

New Target -> Cross-platform -> Aggregate

[Vocabulary]
[Read more about Xcode structure]



来源:https://stackoverflow.com/questions/6747499/when-and-how-to-use-aggregate-target-in-xcode-4

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