Questions tagged [xcode3.2]

The June 2009 release of Xcode, Apple's integrated development environment (IDE) for its Mac OS X and iOS platforms.

Xcode is Apple's integrated development environment (IDE) for development for its Mac OS X () and iOS (/) platforms. Documentation for Xcode 4, the newest major version, can be found in Apple's Xcode 4 User Guide. Apple also has a good starting point for new users.

This tag covers:

  • Project organization
  • Source code editing
  • Build system
  • Unit testing
  • Interface Builder (in Xcode 4 and later only; it is separate in 3 and earlier)

Xcode comes with Apple's Mac OS X and iOS SDKs bundled, but that does not mean questions about the use of those SDKs are questions about the IDE. Consider what changes your question would require if you were using vi to edit and make to build; if your question would remain unchanged, then it is not an Xcode question, so you should not give your question the tag. Use the (Mac) and/or (iOS) tags instead.

See for more information.

276 questions
9
votes
1 answer

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 ID) is used in code. I have been browsing for…
Dave
  • 4,038
  • 9
  • 45
  • 57
8
votes
3 answers

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 looked up from the applications property list so that…
Benjamin Gale
  • 12,977
  • 6
  • 62
  • 100
8
votes
1 answer

Searching all .h and .m files in XCode

How can I search all .h and .m files in a project for a string?
neuromancer
  • 53,769
  • 78
  • 166
  • 223
8
votes
3 answers

xcode 3.2.2 and objective-c 2.0 and debug: where are my object's property/instance variable values in debug?

working on a mac os project (meaning not iPhone) requiring 10.6 and is 64bit, allows me to use properties to generate both accessor methods and instance variables in the header file. but, during debug, i'm not seeing how to look at the object's…
lulu
  • 669
  • 10
  • 26
7
votes
11 answers

Xcode's Build and Archive not working

The current issue I'm having is that Build and Archive will build my current target but after it's finished building, a pop-up will appear with the message: "The operation couldn't be completed. No such file or directory" I have reinstalled Xcode…
olivaresF
  • 1,369
  • 2
  • 14
  • 28
7
votes
3 answers

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? What I've tried so far: I've added a modified copy…
rluba
  • 2,014
  • 2
  • 19
  • 26
6
votes
5 answers

Phonegap 1.5 (Cordova) ios childbrowser doesn't open at all

I'm a complete Phonegap newbie so go easy on me if you can :) I've got phonegap 1.5 installed and running fine. I struggled to install the childbrowser plugin but I believe it's correctly installed now. However, I can't seem to get the childbrowser…
Brad Barrow
  • 1,036
  • 10
  • 18
6
votes
1 answer

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 rvm install 1.9.3 I get the following…
dgmstuart
  • 728
  • 2
  • 7
  • 17
6
votes
2 answers

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 Xcode 4 I see there is an option in Targets ->…
Peter Warbo
  • 11,136
  • 14
  • 98
  • 193
6
votes
5 answers

Cocos2d install

I tried to install cocos2d framework to my xcode but I can't. I have Xcode version 3.2.5, cocos2d framework version 0.99.5, and iOS version 4.2. I opened the terminal and entered $ sudo /mac2/cocos2d-iphone-0.99.3/install-templates.sh Terminal…
Adel
  • 648
  • 1
  • 9
  • 26
6
votes
2 answers

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
Er.Priyank Maheshwari
6
votes
3 answers

xcode syntax color coding explained?

Can anyone give me a quick rundown of the color syntax meanings in xcode? I am running into some problems and understanding the color coding I am sure will help me out. Currently I have some variables that are light blue and I think they need to be…
Slee
  • 27,498
  • 52
  • 145
  • 243
5
votes
2 answers

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 that xcode 3 will not work on Lion 10.7, only…
Prateek Chaubey
  • 653
  • 2
  • 10
  • 24
5
votes
1 answer

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 start in Xcode 3. Every time I run the program, I have to click on the Show Console button. I'm running Mac OS X Snow Leopard and Xcode 3.2 Thanks!
Felipe Barreiros
  • 2,069
  • 3
  • 18
  • 19
5
votes
2 answers

XCode3 - relationship between Library Search Paths and project Frameworks

As a new MAc developer coming from VS I don't really 'get' what a framework is. If I add a framework to my project, does this automatically mean the headers should be found when I do #include ? I seem to be finding in some cases I have…
Mr. Boy
  • 60,845
  • 93
  • 320
  • 589
1
2
3
18 19