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
1 answer

'performSegueWithIdentifier' is not working

I have created a segue in storyboard named "CreateGame".And called it with my viewController to Load CreateGameViewController using [self performSegueWithIdentifier:@"CreateGame" sender:nil] but is is not working. it was working some time ago but…
user1228103
0
votes
1 answer

Yellow warning triangle when implementing sounds I don't understand

When I implement sounds in my apps, I always ge a couple of yellow warning triangles with the warning: "implicit declaration of function "audio services create system soundID" is invalid in C99" It doesn't effect anything in my app I just…
JSA986
  • 5,870
  • 9
  • 45
  • 91
0
votes
2 answers

Distribute ad-hoc app

I want to distribute my application to .ipa file which can be added by itunes to device. And i go to developer.apple.com and then: Generate Distribution Provisioning Profile, download, install it and use it as "code sign". Then install Distribution…
Jakub
  • 13,712
  • 17
  • 82
  • 139
0
votes
1 answer

Error integrating facebook SDK wih XCode 4.3.2 on Lion MacOSX

As per facebook's dev docs : Creating an iOS Facebook SDK Static Library If you create an iOS app that has Automatic Reference Counting (ARC) enabled then you should use a static library version of the iOS Facebook SDK instead of dragging in the…
Vikas Singh
  • 1,781
  • 7
  • 27
  • 54
0
votes
2 answers

Why do I need to control-drag some kind of UI-widgets into yellow sphere representing the view controller?

I'm a newbie and am learning the iOS-dev through reading the official tutorial Your First iOS App . While I don't quite understand the behind meaning of control-dragging the text-filed into the view controller represented by a yellow sphere icon.…
lookof
  • 363
  • 1
  • 3
  • 8
0
votes
1 answer

Undefined symbols for architecture armv7 - route-me library, ad hoc only

I have read through all of the other questions related to this topic, and can not find my answer. My project is using route-me. It builds just fine for the simulator, and for a connected iPad. The archive for ad hoc will not build. I had…
Beth
  • 23
  • 5
0
votes
1 answer

I'm Initializing two NSArrays. Why might one work and the other fail?

I am trying to initialize two NSArrays with the following code self.fillingTypes = [[NSArray alloc] initWithObjects:@"Ham",@"Turkey",@"Peanut Butter", @"Tuna Salad",@"Roast Beef",@"Vegemite", nil]; self.breadTypes = [[NSArray alloc]…
mimc
  • 111
  • 1
  • 7
0
votes
1 answer

Xcode: Tableview checkmarks

I wanna know how to check some cells in a table view. Does somebody know how to do that? I want, when the user presses a cell then a checkmark will appear and if the user presses again it ill disappear agian. The user should be available to check…
Mikkel V.
  • 155
  • 1
  • 3
  • 11
0
votes
1 answer

Xcode4.3.2 AVFoundation.framework not found?

Xcode4.3.2 AVFoundation.framework not found I am missing the following Framework: /System/Frameworks/AVFoundation.framework. so cannot use the AVFoundation frameworks for the iPhone simulator or device. Is there a way to download just this…
Santhosh
  • 13
  • 6
0
votes
1 answer

How to Auto resize in XCodes 4.3.2

After i upgraded into XCodes 4.3.2 , that's giving me headache. In older version, We can auto resize our control with click on arrow like following photo But in XCodes 4.3.2 that view was changed like So what is scales and how it's work? I really…
Fire Fist
  • 7,032
  • 12
  • 63
  • 109
0
votes
1 answer

Calling method to view controller delegate, won't dismiss modal view

I have the following simple view controller class set up @protocol ThermoFluidsSelectorViewControllerDelegate; @interface ThermoFluidsSelectorViewController : UIViewController @property (weak, nonatomic) id…
shoul25
  • 3
  • 2
0
votes
2 answers

NSTableView not redrawing under specific conditions

I have a NSWindow with two NSTableViews and other NSViews. Since I have changed both NSTableView into view mode one of the tables, does not refresh correctly under specific conditions. When another view is placed on top and then removed and…
jread1297
  • 27
  • 5
0
votes
2 answers

How to stop UIWebView from automatically loading when the UIView it's in loads

Brand new to app coding-- hope you can help! I'm using XCode 4.3 with Storyboard. I have a UIWebView inside a tabbed UIview that loads an .mp3 file and plays it when that tab is selected. What I'd like, however, is to have the WebView sit idle when…
Homeoftheben
  • 69
  • 1
  • 10
0
votes
1 answer

iOS Video Player FFmpeg

So I want to make an app for the iPhone that will play live mms:// video streams. I have look around, and everywhere says that I'll need FFmpeg in order to accomplish it. So I successfully compiled the FFmpeg libraries, but now Do I have to convert…
Rahim Jan
  • 126
  • 11
0
votes
2 answers

drawing rectangle on button click in viewcontroller class in objective c IOS5

simply I am beginner in developing on ipad and I need to draw rectangle at point x,y with width and height when i clicked or touched button . I searched on google but i didn't find anything working in button handler
kartal
  • 17,436
  • 34
  • 100
  • 145