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
0
votes
2 answers

Find in project window appearing blank in XCode Version 3.2.5

I have messed up with some of the settings in my XCode project and now when ever I try to find a text in project the finder window is coming as blank. I have quit my XCode and restarted my Mac multiple times but still this problem persists. This…
sandy
  • 2,127
  • 4
  • 28
  • 50
0
votes
1 answer

Why am i unable to extract entitlements from application?

I use Xcode 3.2. I built my app to the App Store but I get the error: Warning: Unable to extract entitlements from application: /Users/philip/Documents/Untitled/build/Distribution-iphoneos/Untitled.app (-19045)
svincoll4
  • 61
  • 2
  • 2
  • 8
0
votes
1 answer

How to quickly remove all the unused variables with xCode?

I was wondering if there is a quick and effective way to remove all the unused variables (local, instance, even properties) in xcode... I am doing a code cleanup on my app and if I knew a quick way for code refactoring it would help me a…
Rad'Val
  • 8,895
  • 9
  • 62
  • 92
0
votes
1 answer

how to text from url with xcode to a string

NSURL *url; NSData *data; NSString *blork; url = [NSURL URLWithString: @"http://www.mycompanyaddress.com/identity_check.jsp?cliId=A-00000&security_key=00000"]; data = [url resourceDataUsingCache: NO]; …
Bilal
  • 141
  • 1
  • 4
  • 14
0
votes
2 answers

How can I open an Xcode project in an older version of Xcode?

I need to open an Xcode project in older Xcode version to build under the older SDK. What is deployment target option mean in "project settings". Does it mean that I can build my project on latest iOS 4.3 SDK for an iPhone OS 3 device? How about…
dpart
  • 157
  • 2
  • 13
0
votes
0 answers

How to run old Xcode based project to latest Xcode?

I have old project built in xcode 3.2 now is it possible to run it in xcode 10. Have tried to convert to modern objective c syntax but fails it says "No source changes necessary". Please guide.
iPhone 7
  • 1,731
  • 1
  • 27
  • 63
0
votes
0 answers

Can an old Xcode 3.2 based project be run using Xcode 10?

What things needs to changed or updated to run the a project created using Xcode 3.2 in Xcode 10? So, far I have changed the architecture to standard architecture and deployment target to iOS 10.0. Previously it was iOS 5.0, and supported device was…
iPhone 7
  • 1,731
  • 1
  • 27
  • 63
0
votes
0 answers

Table view reload everything

I just wanted the "validate" button to take me back to the home page, but every time I go to the sound library, the themes reload again and again. How can I fix this? f //FUNCTION THAT GETS THE NAME OF THE SONGS func gettingSongNames() { let…
0
votes
1 answer

No response by clicking a button in Objective-C under Mac OS X 10.6.8 and Xcode 3.2.6

What I do: I'm writing my first objective-c-software and I begun to write the code. First, it was thought o be a command-line-tool, which also was the type of project, I initially chose. After finishing, I added a new „Application Xib“-File, named…
0
votes
1 answer

After updating XCode i got error

This type of error occur when i install SDK 3.2.5 ios 4.2 and run my older project... older project run successfully in previous version of Xcode... Code Sign error: The identity 'iPhone Developer' doesn't match any valid certificate/private key…
AJPatel
  • 2,291
  • 23
  • 42
0
votes
2 answers

performSelector does not hit breakpoint in debug mode

When the following code is executed style = [self performSelector:sel withObject:(id)state]; The breakpoint in sel does not hit. Is this normal behavior? NSString* key = state == UIControlStateNormal ? selector : [NSString…
user210504
  • 1,749
  • 2
  • 17
  • 36
0
votes
1 answer

Open offline jpg-images in a command-line-application in Objective-C under Mac OS X 10.6.8 and Xcode 3.2.6

What I do: I'm pretty new to Objective-C and I write an command-line-application on my old Macbook 2,1 that works with pictures. My problem: I just want to get the width and height as a number (int, NSInteger, NSNumber, …) of a picture saved on my…
0
votes
1 answer

Send Instant Message in iphone

I am New to iphone. Currently I am using Mac os 3.2, By using this version can i send Instant message programmatically? Because,I got an error like undelared MFMessageViewController. What can I do? If it possible,then send sample code. Thanks in…
user559080
  • 1
  • 1
  • 2
0
votes
1 answer

Send Email in iphone

I am new to iphone. I am working on first app..I could design Email view by using Interface Builder. My requirement is, I have to add contact list. And choose required contact, when i clicked on To UIButton, It will be placed on Address…
user559080
  • 1
  • 1
  • 2
0
votes
1 answer

Email in iphone

I am new to iphone. I going to implement Email functionality. I have to add contacts, which will appear on a button click event. Under the list of contacts, I choose a contact and it will be placed on address textfield. How can i do this? Can any…