Questions tagged [xcode3.1]

Xcode 3.1 is Apple's integrated development environment (IDE). This tag should only be used for questions about this specific version of Xcode itself, and not for general Mac or iPhone OS programming topics. Use [cocoa] for Mac programming questions, or [cocoa-touch] for iOS (formerly iPhone OS) programming questions.

Xcode 3.1 is an update of Apple's integrated development environment for Mac OS X and iPhone OS.

Xcode 3.1.x supports OS X SDK(s) for Mac OS X Panther (10.3.x), Mac OS X Tiger (10.4.x), and Mac OS X Leopard (10.5.x) but can target non-Mac OS X platforms, including iPhone OS 2 SDK. Another new feature is support of Subversion 1.5 as Xcode 3.1 SCM.

Xcode 3.1 was released on August 2, 2008 and included the GCC 4.2 and LLVM GCC 4.2 compilers.

7 questions
20
votes
19 answers

iPhone Dev: Xcode debugger does not stop on breakpoints

I've got Xcode 3.1.2 on OS X 10.5.5. I have an iPhone project that builds fine but the debugger will not hit any of the breakpoints I set. I've tried all the standard fixes that I find on the net: I've turned off 'Load Symbols Lazily' in Xcode…
Mike Marshall
  • 7,788
  • 4
  • 39
  • 63
6
votes
1 answer

Attaching to a remote process for debugging

Using Xcode 3.1 on OSX 10.5; is it possible to attach (the debugger) to a running remote process? I know that it's possible to start and debug a remote process (as explained here), but it would be great if I could find a way to attach to an already…
fuad
  • 4,265
  • 9
  • 34
  • 32
3
votes
1 answer

Unit testing in Xcode 3.1

I read the question on 'The best way to unit test Objective-C and followed the instructions, but no matter what I do, the Unit tests do not run. Actually the entire program does not run, I get the following message. dyld: Library not loaded:…
Gareth Lewis
2
votes
1 answer

Add new language to localization list in Xcode 3.1

In Xcode I'm trying to add another localization to an xib file. In the drop-down list I have 4 languages: English Japanese French German. How do I add Chinese to the list so I don't have to type it every time when I add to another xib file?
Mobilul
  • 21
  • 2
1
vote
4 answers

Passing switches to Xcode 3.1 user scripts

I have a user script that would be much more useful if it could dynamically change some of its execution dependent on what the user wanted. Passing simple switches would easily solve this problem but I don't see any way to do it. I also tried…
MyztikJenz
  • 1,650
  • 14
  • 19
0
votes
1 answer

Programming with old version of Xcode

I am a beginner in programming and as I have ideas of making apps what do you recommend to start with? Is it OK to start with old version of Xcode such as 3.1.1 ? Thx for your comments
user5366179
  • 101
  • 1
-1
votes
1 answer

Stuck Creating a Database Programatically. Using Xcode 3.1.4

{ NSString *docsDir; NSArray *dirPaths; dirPaths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask, YES); docsDir=[NSString stringWithFormat:@"%@",dirPaths[0]]; databasePath = [[NSString…