Tagged Questions
0
votes
0answers
65 views
Building Objective-C framework for Mac
Ola,
I followed this tutorial to build frameworks for iOS, https://github.com/jverkoey/iOS-Framework I was wondering how to convert it to build a framework for Mac. I am stuck on the build script.
...
0
votes
0answers
60 views
xcodebuild fails with new literals
Hi, I'm using xcodebuild for jenkins, but with new xcode literals I get errors like:
error: expected method to read dictionary element not found on object of type 'NSDictionary *'
id ...
0
votes
1answer
187 views
Does xcodebuild command have some options about C++ compile options?
When I used Xcode 4.6 preview verion or xcodebuild command, I had a such error below.
invalid suffix on literal; C++11 requires a space between literal and identifier
However When I used Xcode4, ...
1
vote
0answers
72 views
Why won't my Settings.bundle update when I create an Enterprise Build with xcodebuild and xcrun?
Have been running a scripted build without problems for a few months now instead of using XCode to do it. When I create a build with XCode, that build has the up to date version of the ...
0
votes
2answers
318 views
xcodebuild archive configuration not work
I want to use xcodebuild to archive one scheme with 3 different configurations, but the configuration is never changed with archive action.
Here is the content in .sh
xcodebuild -workspace ...
1
vote
4answers
802 views
RestKit/RestKit.h' file not found error during xcodebuild
I am trying to use Jenkins-CI to auto-build an iOS project that uses Restkit, apparently, restkit resides as a project inside the main project. And the project builds successfully using the XCode-IDE. ...
0
votes
1answer
115 views
NSUserdefaults using xcodebuild
xcodebuild has a parameter -userdefault=value. How can I use it to set NSUserDefaults ? Do I have to specify a file/plist?
6
votes
3answers
984 views
PhoneGap how to make a release build from the command-line
I make release builds by calling:
xcodebuild -project HelloWorld -sdk iphoneos5.1 -configuration Release install
But for PhoneGap apps I get this error:
** BUILD FAILED **
The following ...
0
votes
1answer
144 views
XCode: Change xcarchive folder and file name
I'm generating the .xcarchive file from the command line, using:
xcodebuild -scheme fullxsTest archive CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
This puts the file in...
...
0
votes
1answer
1k views
iOS: XCode 4.5: xcodebuild error - fatal error: 'UIKit/UIKit.h' file not found
So I would like to use xcodebuild in Terminal to create a build from a test application (called RunTeszt2). The app is an iOS single view application with nothing in it, just created and closed.
When ...
0
votes
1answer
227 views
iOS: XCode 4.4.1: xcodebuild error - Unable to read diagnostics from file
So I would like to use xcodebuild in Terminal to create a build from a test application (called RunTeszt1). The app is an iOS single view application with nothing in it, just created and closed.
When ...
12
votes
6answers
6k views
Choose a destination with a supported architecture in order to run on this device
my Xcode is Version 4.4.1
The project thoroughly before, but now I can't
who can help me?
0
votes
1answer
73 views
Set the DerivedData location in the same folder as project
I have a workspace with 3 different targets, for one of them I need to get the result of the build inside the folder where my code is.
I also need to build this using xcodebuild, I've been ...
1
vote
1answer
128 views
xcodebuild uses different configuration than building from within Xcode
At the command line, xcodebuild gives different results than building from within the Xcode UI.
Here is the command line that I pass:
$ xcodebuild -sdk iphonesimulator5.0 -configuration Release ...
5
votes
3answers
2k views
Is the project.xcworkspace file important?
I am doing command line xcodebuild using a shell script, the problem which I face is that if I open and close the xx.xcodeproj file once and then use that command it works well.
Somehow if I get deep ...
2
votes
1answer
109 views
Xcode crashes - but only for a specific project (target 'MyApp' has been asked for its build context but it does not belong to a project)
Whenever I try to run a specific project / app from Xcode it crashes with the details in the backtrace (please see below).
All sorts of funny stuff is going on running this in Xcode.
First, deleting ...
-1
votes
1answer
79 views
OSX Application Crashing in release mode
Any pointers how can we debug an application in the release mode, its crashing even a first line it self , below is the code snippet
- (void)applicationDidFinishLaunching:(NSNotification ...
2
votes
2answers
323 views
Can't find Header files when building from console [closed]
I have a project which uses a nested project dependency which in my case is RestKit.
In Xcode
When I build the project from within Xcode RestKit also gets compiled and places its headers here:
...
0
votes
0answers
234 views
Cocoa NSTableView Drag Row and Drop on NSView
I am new to xcode and cocoa. I want to create a Mac application that allow user to drag a table row and drop on custom view. So user can select any data from NSTableview and put in a Custom view. I ...
1
vote
2answers
375 views
Running xcodebuild twice from a Cocoa app (via NSTask) silently fails
I have a Cocoa app that does a number of things, but among them, uses 'xcodebuild' to clean and re-build a iOS project in XCode. The Cocoa app was developed using XCode 4.1, and runs only on OS X 10.7 ...
-2
votes
3answers
300 views
expected expression before '||' token in xcode
Hey i'm new in xcode coding so i'm learning my self.
I write this code and an errors appear point to the first of "|" saying EXPECTED EXPRESSION BEFORE'||' TOKEN.
this is my if statement:
if ...
0
votes
0answers
437 views
How to upload mutiple images on server in iphone?
In my application user should be able to upload mutiple images on server (upto 8 images at a time)?
I am able to upload one image at a time but i am not able to upload mutiple images at a time?
please ...
3
votes
1answer
290 views
Different behavior on Xcode and xcodebuild
I have a CI environment which builds my project. So when I compile my project with xcodebuild -target MyTarget and run it on a physical device, I get a visual bug with one of the Three20 libraries as ...
0
votes
1answer
700 views
Xcode: How to link a pre-compiled c++ library
Newbie-Problem:
I have a small test-class (TestLibMain.cpp) in c++ an compiled it to a "libTestLib.dylib" which is located in a subdirectory "debug" of the directory containing the ...
1
vote
1answer
358 views
3D Model in iOS Application with OpenGL ES?
I am making a bobble head (the head will bobble when you shake your device) iOS app for the iPad, iPhone, and iPod Touch, and was wondering how I would go about doing this. I have been learning how to ...
1
vote
1answer
481 views
Add Version number to XCode Command Line Utility C++ Project
I have created a Command Line Utility C++ tool in XCode using Objective-C. I want the version number to be displayed in the Info of the created executable. So I have added the version number 1.0.0.0 ...
12
votes
10answers
4k views
iOS App crashing before entering main() with Xcode 4.2 & iOS 5
Background
After upgrading xcode4.1/ios4 to xcode4.2/ios5 I am experiencing crashes while the App is loading and before it even enters main().
I have set a break point in main() but it is never ...
4
votes
2answers
3k views
Cannot build XCode project from command line but can from XCode
I've created in XCode a simple navigation-based iPhone app. The app builds and runs properly from under XCode but I cannot get it to build from command line.
From terminal I execute:
xcodebuild ...
0
votes
1answer
104 views
changes in xib causing crash
Changes in xib causing it to crash.
I am using xcode 4 (ie. version 4.0.2) to write a program that I started in earlier versions.
I have written a lot of code and apart from frequent crashes during ...
1
vote
0answers
287 views
XCode won't generate lib, framework or app bundle; partial success with xcodebuild command
This has been driving me nuts for a couple days now. I have been poking around on Google for hours with no luck. I have glimpsed a few tantalizingly close hits here (see link at bottom), but nothing ...
0
votes
3answers
1k views
Error building my app to my ipod touch:building with 'Targeted Device Family' set to iPhone only ('1') not supported with SDK 'Device - iPhone OS 3.2
So I finished coding my app, and downloaded the development profile n all that good stuff with the entitlements, etc; but I get these warnings:
ld: warning: in ...
2
votes
1answer
453 views
xcodebuild - Build Succeeded -> Bus error
I'm using xcodebuild to compile my project. I use this on the command line:
xcodebuild -sdk iphoneos4.0 -configuration Distribution
It returns with the regular build information scrolling by, then ...
0
votes
2answers
2k views
How can I take values from textbox and assign it to integer variable in Xcode?
how can I convert the valuesof textbox to numeric?
here's what I'm doing:
int el = electric.text;
int wb = waterbill.text;
int inet = internet.text;
0
votes
1answer
505 views
Accessory View in UITableView
I have a doubt in accessory view in UITableView. The doubt is
Is it possible to add more than one button in UItableviewcell using accessryView if so plz guide me.
thanks in advance
4
votes
1answer
382 views
New Three20 Build-Error
i just upgraded my Project to the newest Three20 Build.
When compiling i get following errors:
Undefined symbols:
"___restore_vfp_d8_d15_regs", referenced from:
+[TTEntityTables(TTSingleton) ...
1
vote
4answers
3k views
Build an Xcode project on a Linux machine
Without writing a GNUmakefile by hand, do any tools exist that understand Xcode projects and can build them directly against GNUstep, producing a Linux executable, thus simplifying (slightly) the work ...
0
votes
1answer
78 views
Xcode acting strange
I am typing code from Head First iPhone Development (O'reilly) and Xcode will build and run fine once and then, without any modification to the code, the second build will fail. Why?(I'm using ...
2
votes
3answers
3k views
Protocol Methods not Recognized When Implemented in a Category
I have a view controller class that has to implement several protocols. Too keep things neat I have a habit of putting each protocol's methods in a category on the view controller class.
This time I ...
1
vote
1answer
785 views
How can I write to the current directory in the iPhone SDK when running xcodebuild from the command line?
Does anyone know how to obtain the path to the current directory when running xcodebuild (mainly, the project directory) and write files to it? I'm trying to save the results of some unit tests to ...
4
votes
2answers
10k views
Xcode - how to include c library and header file to cocoa project?
How do I add c library to Xcode Cocoa project?
Or what is the best option, I don't want to copy them into Cocoa project directory.
I have a C project called a which compiles into library a.dylib and ...
5
votes
4answers
220 views
Most efficient way to do 22 different builds
I'm getting close to finishing my first relatively simple Xcode project (a custom installer) and I need to do 22 builds. Yes that wasn't a typo! What's different on each build is the PRODUCT_NAME, a ...
0
votes
2answers
650 views
iPhone: Using static library in an application crashes the device but not the iphone simulator
I have a library I made, and now I want to utilize it in an application. I've believe I've properly linked to the library. Here are all the things I've done:
Set the header search path
Set other ...
2
votes
2answers
1k views
Why getting differences between using XCode and xcodebuild?
Can anyone explain why I get different results when compiling the same XCode 4.x project using the GUI and xcodebuild command-line?
XCode GUI
Perform a clean
Build "Release" target
Build ...
0
votes
4answers
812 views
Objective-C syntax checker
Is there an Objective-C syntax checker?
I have tried gcc -fsyntax-only but it is not really 'syntax only'. It still produces errors if run on an individual implementation file which has references ...
8
votes
2answers
833 views
Building a backwards compatible OS X app, when a new API is present?
I'm trying to upgrade an app (Clarke) to provide 10.6 compatibility.
My plan is to use two different code paths depending on the version of OSX in use.
On 10.5 it will use one controller, which ...
1
vote
2answers
498 views
Slice up image into icons at build time or runtime in xCode
I need about 100 icons inside my application. Would it be logical to have one large image file with all the icons and then somehow split it up into individual NSImage objects? Is there a way to run ...
