I'm reading Apple's Swift tutorial (https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/AccessControl.html#//apple_ref/doc/uid/TP40014097-CH41-ID3) and in the Access Control chapter, there are a few terms that I don't understand:
module
bundle
framework
target/build target
product
Could someone explain what these words mean in the simpliest way possible? I've looked up the meaning of these terms on the internet but the explanations are so confusing and incomprehensible...
>explain what these words mean in the simplest way possible?
Do you want the simple dictionary definitions, or what they mean to Xcode, and you, when you make an app?
Module: A set of parts that can be assembled into a structure. To Xcode, that means you can have a group of lines of code that you can (re)use in different places without having to write that code again.
- Each target defines a list of build settings for that project
- Each target also defines a list of classes, resources, custom scripts etc to include/use when building
- Targets are usually used for different distributions of the same project. You can have one project, with more than one target, where you can create different apps without having to have more than one project.
See Xcode Concepts: https://developer.apple.com/library/content/featuredarticles/XcodeConcepts/Concept-Targets.html
Products folder: Inside the Products folder, you'll find the built version of your app, that Xcode translated from the source code into the object code for your device's processor to execute, or run.