Linked Questions
11 questions linked to/from What is a target dependency?
299
votes
36
answers
294k
views
EXC_BAD_ACCESS signal received
When deploying the application to the device, the program will quit after a few cycles with the following error:
Program received signal: "EXC_BAD_ACCESS".
The program runs without any issue on the ...
303
votes
6
answers
95k
views
Xcode: What is a target and scheme in plain language?
Yeah the title says it :-) What do they mean in plain English language? I really don't understand the explanation on Apple's website and I need to rename my target and I'm afraid that nothing works ...
244
votes
3
answers
108k
views
Library? Static? Dynamic? Or Framework? Project inside another project [closed]
I have an existing iOS app and want to add a large chunk of code that I've been developing as another project just for ease of testing. The new chunk basically deals with saving an image to various ...
80
votes
6
answers
54k
views
Xcode 4.2 how include one project into another one?
I keep searching, but cannot find a clear and simple explanation on how to include one XCode project, along with all of it's sub-classes into another project. I routinely see stuff like that in sample ...
56
votes
7
answers
119k
views
Xcode : Adding a project as a build dependency
Im playing around with the soundcloud api, in its instructions it says to
drag SoundCloudAPI.xcodeproj into your project
add it as a build dependency
I can drag the project in pretty easily, but how ...
32
votes
5
answers
40k
views
Xcode 12 build target in wrong order for simulator?
My project always runs correctly on all devices using Xcode 11, but after I installed Xcode 12 beta 4, it is failing to build on the simulator.
I compared the build logs of Xcode 11 and Xcode 12 and ...
26
votes
8
answers
19k
views
dyld: Library not loaded: @rpath/libswiftSwiftOnoneSupport.dylib
I've built a Swift framework and now I'm trying to start building a Swift iOS application that will use that framework. I'm getting this error:
dyld: Library not loaded: @rpath/...
30
votes
3
answers
40k
views
Use swift package manager on existing xcode project
im new to the swift and xcode world, so i'm having a problem trying to integrate a package to my project.
I want to add Alamofire dependency, with the following commands:
Inside my root project ...
22
votes
2
answers
20k
views
How does Xcode find implicit target dependencies?
Xcode finds dependencies automatically sometimes. I think is is ok when I am the one who is defining the relationships and when I get lazy ...
But more than often I find myself facing an existent (...
11
votes
2
answers
6k
views
Xcode project inside project
I'm taking over some project of a colleague that is on holidays now.
Other projects have gone fine, but in this particular one, I have found a project inside a project, like using a framework I guess....
18
votes
2
answers
5k
views
How do I add a framework dependency to a test target?
I have created a framework that contains code useful for testing (a bunch of convenience initializers, for example). Now I would like to import that framework in a test target but there doesn't seem ...