Questions tagged [xcode-project]

xcode project settings and project file issues, including code-signing, build configurations, etc

105 questions
0
votes
0 answers

Project file changed many places

My project contains many files and third-party frameworks and so on. Working as a team, When I'm adding a single file to the project it's showing many changes in the project file, How can we set project file to show only my changes. It should not…
Damodar
  • 707
  • 2
  • 10
  • 23
0
votes
1 answer

Xcode Project Issue when using xcode project started in other xcode on other mac

I am trying to use xcode project on other xcode. When i open the project all works fine til open main.storyboard. On open the storyboard i cannot see the editor and only leave one error. Can some one help me please, Im stuck :)))
Sergio
  • 5
  • 1
  • 4
0
votes
0 answers

Count of third-party code in xcode project

How can I get a percent count of third-party code in my Xcode project? It is necessary to find not the number of lines in the "Pods" directory, but the amount of code described in the "Pods" directory that is used in the main project directory. For…
0
votes
1 answer

Is there a way to autocreate schemes for a Xcode Project from command line

I'm tryging to configure a CI pipeline and run unit tests automatically, but I'm handling with no schemes for the current workspace. I know I can create them by using Xcode/ Manage Schemes etc... but since the nature it self of the automation in the…
YadirHB
  • 168
  • 14
0
votes
0 answers

Resolve errors in project files after merge

I merged my code and got some conflicting files, I resolved the merge conflicts but still get the "Workspace integrity/ Couldn't load project" error. The error is probably in the project file but there are no conflicts in the file. What's the best…
Fabio ha
  • 553
  • 1
  • 8
  • 29
0
votes
1 answer

Build an Objective-C/Metal app from the command line

I have created a Mac OS app project in Xcode to draw a simple 2D triangle and it works fine. However, now I want to build it on command line but I am confused on how to do it as the code is in Objective C and it makes calls to METAL which is…
Anurag
  • 651
  • 4
  • 18
0
votes
1 answer

How to add storyboard back to xcode after accidentally deleted

I accidentally deleted my storyboard from the Xcode project. I followed this thread : Accidentally deleted Main.Storyboard and fortunately I found it in Base.lproj folder. But I'm having trouble to add it back to Xcode project. Since I'm new to iOS…
Zusee Weekin
  • 1,348
  • 2
  • 18
  • 41
0
votes
0 answers

Xcode project migration

I'm trying to copy a XCode project from one Mac to another. Simply, I zipped the project directory, copy to the another machine and opened the project with Xcode. The project doesn't build perfect, it generates the following error: ld: library not…
Mario
  • 75
  • 2
  • 2
  • 6
0
votes
0 answers

proper combination of Project/Target/Scheme in xcode7 to create 5 variations (editions) of a OS X screensaver

I am distributing my Mac + Windows screensaver ( http://starmessagesoftware.com/moonscreensaver/ ) outside the apple store and I want to also distribute from the apple store. The screen saver is writen mainly in C++. Outside the apple store I have…
Mike
  • 436
  • 5
  • 9
0
votes
1 answer

Undefined symbols for architecture x86_64: "_CBCentralManagerOptionShowPowerAlertKey", importing Appodeal in React Native

I'm trying to import Appodeal to my React Native iOS app, I followed this Appodeal XCode Tutorial So I met an error in linking, and found some existing ways to solve it, but none of which did help me. ERROR: So here is my "Link Binary With…
animekun
  • 1,789
  • 4
  • 28
  • 45
0
votes
0 answers

Adding one Xcode project into other and make it a single project?

I made a good research on this but things failed and in need of help. When the project started I was the only one working with the project later then another employee has been recruited by our employer to join the project. As we both were new to…
Joker
  • 830
  • 2
  • 14
  • 30
0
votes
2 answers

ionic app archive failing in xcode 7.2 due to ‘Cordova/CDVViewController.h’ file not found

I am developing an ionic app for iOS and it is building fine, but when I archive it in xcode, it is throwing "‘Cordova/CDVViewController.h’ file not found" error in xcode 7.2. I have tried usual suspects such as solution suggested in…
shailesh
  • 865
  • 1
  • 11
  • 18
0
votes
1 answer

Xcode Project Name Change

I know there a lot of questions on this that I've been trying to look through. I changed my app's name successfully but the bundle ID as well as the Target names still reflect the previous project's name. Is this fine for when I submit it to the app…
0
votes
2 answers

Black Stripe is displayed in View in Old Projects

When I try to run some old projects I get a black stripe as image below. I tried to change the SDK version in Deployment Target and also tried update the XIB file. I am using iPhone 6s iOS 9.1 What should I do? For instance, This old project has…
Haroldo Gondim
  • 7,725
  • 9
  • 43
  • 62
0
votes
0 answers

How to Manage #define

In my project I have a definition.h file in which I make most of my #define's. Most of the defines depend on another value. for example: #if STATE_IS(ITALY) #define LANGUAGE "Italian" #define FOOD …
talw
  • 61
  • 2