Tagged Questions
For issues relating to using Xcode, version 3.2.
19
votes
4answers
11k views
Compile Error with: switch, “expected expression before”
Cut to the chase I have recreated my problem as it is fairly self explanatory.
this complies without error:
switch (n) {
case 1:
NSLog(@"");
NSString *aStr;
break;
...
13
votes
3answers
9k views
Way to restore XCode to accept armv6 architecture?
I have a 3rd party .a library, which is apparently compiled for only armv6 compatibility, where both new Xcodes (3.2.6 and 4), both now require a separate armv7 slice to run on the device. The link ...
10
votes
1answer
2k views
XCode 3.2: Changing the default “Code Sense” indentation and whitespaces
I'm working with XCode 3.2 (on "Snow Leopard") which (still) has this nice "Text Macro" auto-completion feature (eg. if you type if it will expand to if (<#condition#>) { <#statements#> ...
7
votes
2answers
752 views
How do you keep Xcode project source files in sync with your file system directories?
I'm new to XCode and I find the file management a huge pain. In most IDEs, you can simply have the project source tree reference a directory structure on disk. This makes it easy to add new files to ...
5
votes
2answers
1k views
How to add configurations to Xcode 4?
There are no other way, I search a lot. In XCode 3 this is easy, but now..
In the screen above, I have the Build Configuration, so I can chose if I want:
Debug
Release
This 2 kind of config, ...
5
votes
1answer
14k views
“a valid provisioning file for this executable was not found” in XCode
I'm trying to submit my second app to the App Store. I've followed all the instructions to the best of my knowledge, but I keep getting this error when I try to build and run:
"a valid provisioning ...
4
votes
2answers
230 views
Subversion : How to add svn:keywords in all xcode Source files?
i m using subversion (Xcode) to commit my files , i would like to add my svn info on all my file headers - please let me know is any other script available to do this ?
Like
Node Kind: directory
...
4
votes
1answer
523 views
XCode: Function argument indentation
I was unable to find any solution of my specific issue. I'm using Xcode 3.2. I'd like to indent the next line of function argument just one step in from the previous line:
somevariable = pow(
a,
...
4
votes
1answer
656 views
How do I attach the console to Xcode IDE
I'd like to know if there is a way to show the Application Console on Xcode IDE.
Everytime I run the program, I have to click on the Show Console button.
I'm running Mac OS X Snow Leopard and XCode ...
4
votes
5answers
1k views
How to speedup xcode builds without any project modifications?
Last version or XCode (3.2.1) is running very slow on OS X 10.6.
What kinds of tweaks can you do to your Mac in order to speedup Xcode build process.
I'm not looking for general hints like how to ...
4
votes
3answers
4k views
Add a custom compiler to XCode 3.2
I have a working gcc 4.3.3 toolchain for an ARM Cortex-m3 and would like to integrate it into XCode.
Is there a way to set up XCode (3.2) to use this gcc toolchain instead of the built-in GCC 4.2?
...
3
votes
1answer
198 views
gcc not working - Xcode 3.2.6 - Snow Leopard
I'm a bit of a novice at messing around with my environment and I seem to have rather broken it. Many thanks in advance for any assistance you can offer.
The main symptom is that when trying to run ...
3
votes
1answer
78 views
Export symbols file: Objective C derived class members, 64-bit
I have a Cocoa-based universal dynamic library that also includes more static libraries, from which I want to export functionality. It seems I cannot do the latest without using an export symbols ...
3
votes
1answer
91 views
What does “Standard (32/64-bit Intel)” Architecture as target actually mean?
I have an application to which I added some new functionality.
This was tested in Debug mode, but when compiling for Release introduced a number of errors.
A bit of detective work showed these were ...
3
votes
2answers
232 views
Is it possible to install Xcode 3 after we have installed Xcode 4?
I have Xcode 4 on my Mac. Is it possible to install Xcode 3 say in directory other than /Developer?
Please let me know.
3
votes
2answers
854 views
Xcode 4 Supported Device Orientations
I recently upgraded to Xcode 4. Previously in Xcode 3 to set the allowed device orientations you had to edit the shouldAutorotateToInterfaceOrientation: method in the application delegate. But now in ...
3
votes
1answer
1k views
Xcode 3.2.4 and Mac OS X 10.5
I have a simple question: does Xcode 3.2.4 work on Mac OS X Leopard (10.5) ?
3
votes
2answers
4k views
how to add new font to Xcode 3.2?
please tell me how to add new font to iphone xcode3.2.
thanks in advance.
3
votes
2answers
4k views
Is it possible to use iPhone Simulator 3.1 from XCode 3.2.3?
Because the Simulator 3.2 and 4.0 in the SDK 4 do NOT actually work for iPhone simulation (which always comes out iPad and not responding at all), I ended up with 2 SDK installations, using SDK ...
2
votes
1answer
44 views
How to run and deploy XCode 4.2 project in XCode 3.2 and iOS 4.2 device
Currently i am working on Xcode 4.2 with iOS 5 sdk. I have created the project with core data framework. I have designed the screens and deployed in iOS 5 devices.
I want to run my project in Xcode ...
2
votes
2answers
59 views
Program received signal: “0”. No prior sign of trouble
Running a long-running sound processing app on tethered (to Xcode 3) iPod Touch. Twice now, after 1 hour 40 minutes the first time and 2 hours 20 minutes the second, the app has ended with signal 0. ...
2
votes
1answer
189 views
Which version of Xcode does xcodebuild use?
I have installed both Xcode 3.2 and Xcode 4.0.2 on the same machine, which uses Hudson for automated CI (continuous integration) builds. When I say that both were installed, what I mean by that is ...
2
votes
2answers
506 views
How to run and use Xcode 3 and Xcode 4 under OS X 10.7 Lion?
I am looking for a full guide on how to trick Xcode3 to run under Lion.
I am aware that Apple does not support this, but this doesn't meant it's impossible, it's just not supported.
2
votes
1answer
401 views
How to display the exact line of code causing application crash in xcode 4 debugger like in xcode 3.2
I just downloaded xcode 4 recently and have read the xcode transition guide, however, I am still wondering how do I get the same feature for debugger in xcode 4 like in xcode 3.2.
When I program in ...
2
votes
1answer
138 views
why we keep -D in other c Flags in xcode
why we use -D in other c flag . in target right click go in get info in build setting other c flags why we we have to write -D like -DDEBUG
2
votes
3answers
301 views
C++ std method listing
I am new to C++ and XCode.
I would like to know how I can get a list of available methods from namespace std or any other namespaces #include'ed in a cpp file., in a similar way you would do method ...
2
votes
2answers
447 views
Where do I put .xcolortheme files in Xcode when there is no ~/Library/Application Support/Xcode/Color Themes folder?
I'm just getting started with Mac and iPhone development, and naturally my first step is to change the color theme. I've found a theme I like here, but I can't find the folder they reference in my ...
2
votes
3answers
937 views
Xcode 3.2: Build & Analyze never finds any issues
I've used the Clang Static Analyzer from the command line before. I wanted to try Xcode's built-in version via Build & Analyze. I never get any negative results even though i specially prepared my ...
2
votes
1answer
415 views
xcode 3.2: how can i add an include dir to my project?
Hiya.
I can't seem to find in Xcode how can I add an include dir to my project.
how can I do so ?
thanks!
2
votes
1answer
1k views
UIPickerView with NSDictionary
I am a .NET programmer and new to Objective C.
I am trying to make a UIPickerView which acts like a .NET dropdownlist. User sees the list of text and selects one and the selected value (which is the ...
2
votes
1answer
222 views
XCode. How Do I Run Two Versions on the Same Dev. Machine: Version 3.2.2 (Pre-release) & Version 3.2.1
Could someone walk me through the setup to run one version of XCode for iPad development - version 3.2.2 prerelease - and another version for iPhone/iPodTouch development - version 3.2.1
The reason I ...
2
votes
1answer
365 views
CGFloat causes iPhone Unit Testing Bundle to fail build
I'm having problems getting an iPhone Unit Testing Bundle to compile when the code it references uses CGFloats. If I recall correctly, CGFloat is just a pre-processor macro so I'm guessing it's not ...
2
votes
1answer
1k views
Keyboard shortcut for Jump to Definition
I'm looking for a keyboard only shortcut for Jump to Definition. The built-in shortcut requires the mouse: ⌘ + Double click.
I've tried to add a regular keyboard shorcut for the Edit>Find>Jump to ...
1
vote
2answers
47 views
Xcode 4 code backward compatible
Can I create code on Xcode4 and then run this exact same code on Xcode3. In other words is it backward compatible and if not what do I have to do to ensure that I can run the code on xcode 3.
1
vote
0answers
168 views
UIPickerview controller not able to pick image and use in xcode4.2 but works well on xcode 3.2
i have a UIImagePickerController this code below runs fine on XCODE 3.2 but app hangs wen complied from XCODE 4.2
Also but sometimes it runs on some other machines once .
Can anyone tell me d ...
1
vote
2answers
192 views
How to uninstall xcode3 from Lion 10.7?
I have just bought a macbook air 11" with Lion 10.7. I installed xcode 3.2.5 on it. But its not working. Xcode is installed, consuming much space but I cannot see it in applications. Somewhere I heard ...
1
vote
0answers
120 views
How to add a UISplitViewController to a window-based app
If I create a new project in Xcode 3 - a "Universal" window based project, I can't seem to instantiate the UISplitViewController outlet I am adding to the iPad's XIB.
Starting with a brand new ...
1
vote
1answer
445 views
Configure Network Proxy Settings in Xcode for SVN Connection
I tried to configure the SVN repository in my Xcode 3 and Xcode 4 but in both versions i am getting the error that "Options are missing:" and at the same time i tried to checkout the code from my svn ...
1
vote
1answer
1k views
How to fix problem with version mismatch of iPhone 4.3.4 and IOS SDK
I upgraded my iPhone to 4.3.4 (8K2) and I can no longer build my app.
In the organizer, I get the following error:
The version of iOS on “Jeff Bonta’s iPhone” does not match any of the versions of ...
1
vote
1answer
6k views
Undefined symbols for architecture i386
I have an app to complete, and when I start trying to understand what the previous developer did (it was done with Xcode 3 I think) by executing the simulator, Xcode 4 show me 25 issues:
Ld ...
1
vote
1answer
184 views
How do I set up an external build tool (make) within XCode3?
I've used XCode4 for a large C++ project. The project uses make for build. I've set up XCode4 to use external build tool make so that my Makefile is called each time I hit build and I see compile ...
1
vote
1answer
328 views
How does Xcode setup a document based application?
I am learning Cocoa and my understanding from reading the documentation is that when an application starts the following happens:
A shared application instance is created.
The main nib file is ...
1
vote
0answers
147 views
<myapp>.app.dsym file gets deleted when I build my project
I am building my first iPhone app. I am using XCode 3.2.6. Everything was ticking along fine when all of a sudden, I get this strange build error. The message is shown below:
GenerateDSYMFile ...
1
vote
3answers
666 views
using c++ in xcode / objective c
So I'm trying to use C++ inside my ios project.
After I make a new project (all default settings, fresh install of xcode), I create a Question.h and a Question.mm file, like this:
Question.h
...
1
vote
1answer
95 views
Simple Save/Load the entire array
I'm new. Been trying to save/load a couple of arrays but to no avail.
I have "Global.h" and "Global.m" providing arrays for other classes.
in Global.h
extern NSMutableArray *arrayTable;
extern ...
1
vote
1answer
321 views
XCode 4's code completion for methods in the .h file
In Xcode 3 I could first write my method in the implementation (.m) file; afterwards adding the same method to the interface (.h) file. At that point Xcode 3 made a code completion for the method ...
1
vote
1answer
286 views
Launching an app in debugger mode on iOS
I have to debug an application on iOS. This application has to be built using build scripts and not XCode. So I cannot use the "build and debug" option. The problem I wish to investigate happens right ...
1
vote
1answer
409 views
Strange error after upgrading to Xcode 3.2.5 ld: file not found: -miphoneos-version-min=3.2
I have been banging my head on this for a while now. What is the problem? btw. I am using the Three20 Libraries in my project in case that has anything to do with.
Ld ...
1
vote
2answers
469 views
New iOS project, free hosted repository: Xcode 4 or Xcode 3.2?
I wonder whether I should start development of a new iOS project in Xcode 4 or 3.2 - on one hand, I know 3.2 (a little), there is lots of info about it out there, and it's stable and proven. On the ...
1
vote
2answers
11k views
XCode error: “GDB:Program received signal: ”SIGABRT“.”
I am writing a simple application using cocos2d 0.99.5, the iPhone SDK is 4.2. I have run my application on device, but when I press the button to switch CCScenes, sometimes the app suddenly has no ...