xcode3.2

XCode 3.2.1 crashes on startup on OSX 10.6.2

I have uninstalled it via the devtools uninstall command and reinstalled 3 times to no avail. This all started when I downloaded iphone_sdk_3.1.3_with_xcode_3.2.1__snow_leopard__10m2003a.dmg from the DEV portal and installed. I've trashed my com.apple.xcode.plist file, uninstalled all xcode plugins as well as Growlcode and I still can'...

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 ask is because the pre-release version does not support building < 3.2 iPhone OS. Or if it does I haven't figured out the magic handshake ...

Xcode breakpoints shifted at runtime

I have been searching for an hour or so here and on Google and cant find the answer as to how correct breakpoints being shifted during run. I have reinstalled Xcode(3.2.2), insured load lazily is off, no optimization in target settings, and every other target setting that might cause the problem. I have also destroyed all of the user pro...

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 almost half a day trying to figure this out. I could add a regular PickerView with list of...

How do I attach the console to Xcode IDE

Hello, 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 3.2 Thanks!! ...

How i can connect the buttons to next pages and create multiple pages?

How can i connect buttons in the example of this Project. zip Here's the link of the file---> (http://www.2shared.com/file/12046081/65fad040/Project.html). Example: Button General Information connect to 3rd page, button Trainer information connect to the next pages number. May i need to create a new .h/.m/xib file for each of the page...

Xcode - Terminating due to uncaught exception for iphone app

When I try to cick on cell in my table view rather than take me to the next view I get a "Terminating due to uncaught exception" error. Here is the code from the debugger: 010-03-27 12:52:48.805 MultiDetailView[335:207] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSCFArray objectAtIndex:]: index (1...

How to compile C program with multiple files in Xcode

Hi, I am on a Mac running Mac OS X 10.6.3 and Xcode 3.2.1 64-Bit and I was wondering if it was possible to compile a C program with multiple .c files in Xcode. Thanks in advance! ...

Can you force a MPMoviePlayerPlaybackDidFinishNotification ?

Hi, I have several movies that are played and presented using this code. As you can see I also have removed the default movie controls and have added a custom overlay which essentially just stops the video. Here is my problem... When I stop the movie with my custom overlay button, I don't seem to be getting the 'MPMoviePlayerPlayba...

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! ...

No "Distribution" setting in latest Xcode??

For some reason, a choice for "Distribution" configuration is not showing up for building an app in the latest Xcode 3.2.2 with iPhone SDK 3.2 when I'm trying to build an app for the iPad Any one else seeing this? I can set it to "Debug" or "Release" but there isn't even an option for Distribution. ...

How to change direction of Text in Xcode?

Hi all, I want to type in Arabic in Xcode. But I can't copy paste in the Xcode properly in right to left direction. Please help me out. Thanks in advance. ...

how could i retrieve the last stat of navigation page when user relaunch the app??

Hi i m new in iphone development plz guide me how can i save and retrieve the last opened state of navigation controller so after relaunching application user can see the last opened page if any body have some idea plz guide me and also give me some sample code for it if possible i will b very thankful to u. Thanx in advance ...

"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 file for this executable was not found" I'm letting XCode auto select the profile automatically. The one I'd like to select is greyed out. ...

node is giving garbage value....

hi, i am doing c program of binary tree while inserting the node to tree after 2 or 3 nodes the child node having garbage value and crashing i am doing in xcode any idea... Bnode createTreeNode() { Bnode node=(Bnode)malloc(sizeof(Bnode)); return node; } Bnode addTreeNode(Bnode inNode, char *inData) { int compareValue; ...

What is the difference between #ifdef __IPHONE_3.2 and #if __IPHONE_3.2?

Hi, I have an iphone app that needs to work for 3.1.3 for the iPhone and 3.2 for the iPad. It is an iPhone app that I want to work on the iPad. The main difference is the MPMoviePlayerController which introduces/and deprecates lots of things in 3.2. Since, the iPhone OS only goes up to 3.1.3 and the iPad is on 3.2, I need to seper...

XCode 3.2 - make emulator to open in iPhone mode

I've installed XCode 3.2 on top of Snow Leopard 10.6.2. When trying to "build and run" an application created from XCode template, the emulator is always opened in iPad mode. When choosing "iPhone" from the emulator menu, it changes its look but next time it is opened as iPad again. How to cause the emulator to run in iPhone mode ? ...

XCode 3.2 does not mark unit test assert failures in the editor

I've been off in Java land for about a month or so and now, upon returning to XCode I feel lost. I've upgraded 1st to 3.1.2 then recently to 3.2 and also got a new Mac with Snow Leopard so I'm not exactly sure when the problem surfaced. I just know that I used to get little red bubbles in my unit test next to the failing asserts and that...

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 code with very obvious issues Clang was always able to point out: // over-releasing an object: [label release]; [label release]; ...

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, b); However, Xcode's syntax-aware indenting insists on converting the above into: somevariable = pow( a, ...