Questions tagged [xcode4.3]

Xcode is Apple's integrated development environment (IDE) for Mac OS X and iOS. Xcode 4.3 (4E109) was officially released February 16, 2012. 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 is Apple's integrated development environment (IDE) for development for its Mac OS X () and iOS (/) platforms. Documentation for Xcode 4.3 can be found in Apple's Highlights Found in Xcode 4.3.

Xcode 4.3 is used to produce software applications for Mac OS X and iOS. Xcode 4.3 (4E109) was officially released February 16, 2012, and Supports OS X 10.7 Lion +.

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.

1056 questions
0
votes
2 answers

uipopover freeze issue on Xcode 4.3.2

hello I'm just trying to make a simple uipopover from a rectbutton. in previous Xcode (4.2) i can run this without any issue, but when i try to run this code on Xcode 4.3.2 iPad simulator, its freeze/hang when i pressed the rect button. can anyone…
redribbon
  • 41
  • 1
  • 10
0
votes
1 answer

cocoa:Why the event is not running?

NSLog(@"ss") execution.Why the event is not running ? -(void)mouseUp:(NSEvent *)theEvent{ switch (self.tag) { case 3: NSLog(@"ss"); [self setAction:@selector(openurl:)]; break; default: …
小弟调调
  • 1,315
  • 1
  • 17
  • 33
0
votes
1 answer

Bundling app for app store distribution in Xcode 4.3

I can't believe how difficult it is to figure out the final process for building an app and getting it into the app store. I've already prepped iTunes Connect with my app and it shows up in Application Loader. I finally figured out how to "archive"…
Mason G. Zhwiti
  • 6,444
  • 11
  • 61
  • 97
0
votes
1 answer

Custom run script error in Xcode

I'm trying to write a custom script as a separate build step in Xcode. To do that I've created Run script build phase. However I receive an error on this simple line (that's all I have in my script): INCLUDE_PATH = $CONFIGURATION_BUILD_DIR/include…
givi
  • 1,883
  • 4
  • 22
  • 32
0
votes
1 answer

Often memory warning after setting "Strip Debug Symbols During Copy" to NO

I have set "Strip Debug Symbols During Copy" build parameter to NO. It has increased the size of my binary app by 0.5 MB. Surprisingly, I have started seeing memory warnings in my application very often. Can this be a reason for this? I can set it…
Abhinav
  • 37,684
  • 43
  • 191
  • 309
0
votes
1 answer

How to load a new view on click of the login page on checking the condition of username and password in iphone

I want to redirect to the new view on the click of the sign in button by checking the login condition that is if user gives the correct username and password redirect to new view in Xcode 4.3.2, i am using the soap service to fetch the username and…
ituner
  • 1
  • 2
0
votes
1 answer

WSDL webservices for iphone

I tried to work on wsdl web services for objective c, but i did n't find any good solution. Any one help me with a sample application how to get wsdl data in to iPhone application.
jay
  • 1
  • 1
  • 1
0
votes
1 answer

Correct configuration of SVN with Xcode 4.3.1

When I´m adding a repository in Xcode 4.3.1, I enter Name in the name field, and select subversion from the menu, and in the location field (initially showing a template , I enter svn://server.myhomedomain.net/aproject Immediately a red status…
Mussge
  • 1
  • 1
0
votes
1 answer

Min/Max method for tableview data

On my tableview, prior to populating it after a search, I would like to add a minimum distance and a maximum distance of the current search in text fields at the top of the tableview. I can't seem to locate a method to do determine these parameters…
Crask422
  • 115
  • 1
  • 9
0
votes
1 answer

Moving animation off screen with scroll view

I have a small animation at the begining of my app, two doors open up horizontally, top and bottom to reveal screen. All good so far, the top section moves off fine, however as i have a scroll view the page is longer than standard, 175000 to be…
JSA986
  • 5,870
  • 9
  • 45
  • 91
0
votes
3 answers

XCode 4.3 import a nested header error: no such file or directory

I'm running into a nasty issue trying to import a header from a project that is embedded in my main project. What is the proper way to import RKJSONParserJSONKit.h indicated below? I'm trying : #import "RestKit/Support/RKJSONParserJSONKit.h" but…
Alex Stone
  • 46,408
  • 55
  • 231
  • 407
0
votes
1 answer

Use of undeclared identifier in xcode 4.3.2

So back in xcode 4.2 I had no issues with the following code: - (void)dealloc { [super dealloc]; retval = UIApplicationMain(argc, argv, nil, @"AppDelegate");} However when I updated to xcode 4.3.2 I get the error that retval and argc are undeclared…
Ashan Marla
  • 1,371
  • 2
  • 10
  • 8
0
votes
1 answer

Xcode update to 4.3.2 messes up my certificates

Last week I finished an app and submitted to apple store from Xcode 4 Now I updated to Xcode 4.3.2 and for the same app I'm getting: A valid provisioning profile for this executable was not found Then after a few searches and tests I realized two…
Andre Cytryn
  • 2,506
  • 4
  • 28
  • 43
0
votes
1 answer

Error while compiling pjsip 2 for Xcode 4.3.2 and SDK 5.1

I'm trying to compile pjsip version 2 using the terminal and I'm getting constant error no matter what I try. Been looking for the answer all over the internet including stackoverflow. I downloaded pjsip version 2 using their subversion repository…
Linus Jäderlund
  • 515
  • 5
  • 13
0
votes
2 answers

Attaching a file to an email in Xcode 4.3

I am new to iOS programming and Xcode, so i'll apologise in advanced. i have written a small Application where the user completes a number of text boxes. upon completing the text boxes i have created a submit button. At which point all the data is…
Lee.712
  • 1
  • 1
  • 1