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

AppDelegate difference between Xcode 3 and Xcode 4.3.1

I just started learning to write iPhone app (maybe a little too late) from a book I picked up from the library "Beginning iPhone Games Development" published by APress. I now come to believe it's written for XCode 3. But at this time, XCode 4.3.1…
Jake
  • 11,273
  • 21
  • 90
  • 147
0
votes
2 answers

Signal SIGABRT in Xcode

I have table in which i would like to tap on the cell and it takes me to another table. I got this error while running in Xcode 4.3.2 : return UIApplicationMain(argc, argv, nil, NSStringFromClass([RanchForecastTouchAppDelegate class])); Thread…
user1344851
0
votes
1 answer

Call method in UIViewController from NSObject?

I'm new to iOS development so please bear with me. Say I have a basic method in a UIViewController that only NSLogs the words "hi". how would I call this method from an NSObject class? It's easy to call methods in an NSObject class from a…
Praxder
  • 2,315
  • 4
  • 32
  • 51
0
votes
0 answers

How come files cannot be committed on Xcode 4.3.2 with Git?

These few days, new Xcode projects are strange that, most of the files have the icon "A" to the right of the filename on the list. Even if I select that file, right click and choose "Source Control -> Commit Selected Files", type in a message and…
nonopolarity
  • 146,324
  • 131
  • 460
  • 740
0
votes
1 answer

PopOut a middle Image in a UIScrollView contain many images

I have problem in playing with the UIScrollView i am using a customImage Object class to display images on scroll view and event fire on each image i achived it all but i have to do a extra work on it as the giving image showing that the middle…
Ravi Sharma
  • 975
  • 11
  • 29
0
votes
1 answer

XCode 4.3.1 Installation

I've recently installed XCode 4.3.1 which I downloaded from developer.apple.com site. Previously, I uninstalled an older version (XCode 4.1) by command line from /Developer/Applications... directory. Now, I can't find any XCode directory at this…
JuanO
  • 2,500
  • 3
  • 18
  • 20
0
votes
1 answer

Viewing original ObjC code instead of assembly in the debugger

Can you please tell me how to see only Objective-C code and not assembly when I use the debugger in Xcode 4.3?
Kostas
  • 1,504
  • 1
  • 11
  • 13
0
votes
1 answer

hello world prog in C with Xcode got a build failed

I am trying to learn C and I have just installed Xcode on my Mac. I wanted to run the first program that was already written #include int main(int argc, const char * argv[]) { // insert code here... printf("Hello, World!\n"); …
user1347096
  • 165
  • 2
  • 4
  • 10
0
votes
1 answer

data in text field disapearing

I have a view controller that pushes to another page on the same class. All data entered into the text fields on the new page vanishes as soon as I move away form it. Im assuming im missing a step here somewhere? Do I have to connected something…
JSA986
  • 5,870
  • 9
  • 45
  • 91
0
votes
2 answers

How to access a mutable array that is a property of an instance of an Object and fill that array up with values

I have a Card Object, which have 4 instance variables namely name(NSString), pin(NSString), points(NSNumber), pointsToDeduct(NSMutableArray). Card.h @interface Card : NSObject @property (nonatomic, strong) NSString *name; @property…
Grauzten
  • 353
  • 5
  • 19
0
votes
2 answers

"_OBJC_CLASS_$_", referenced from: error in xcode 4.3.2

So today I ran into a major problem. I got a problem involving my viewcontroller on xcode 4.3.2 as seen in the attached code: Undefined symbols for architecture i386: "_OBJC_CLASS_$_SecondViewController", referenced from: objc-class-ref in…
Ashan Marla
  • 23
  • 2
  • 7
0
votes
1 answer

XCode 4.x do not include Perl MakeMaker. brew failed - Asks for Perl file.

I am trying to install node.js following instructions. Just installed Homebrew. I tried this. brew install git -v But get this error message: make[2]: * No rule to make target '...config.h', needed by `perl.mak'. Stop. It asks for my config.h…
r4.
  • 358
  • 1
  • 6
  • 22
0
votes
2 answers

xcode 4.3.2 becomes unresponsive on editing/saving a file

this is just driving me nuts. Just downloaded the Xcode 4.3.2 app from mac app store. Now, sometimes upon editing and then saving a file, Xcode becomes unresponsive for 5-10 seconds. The rotating wheel icon displays continuously. Is there some…
vikmalhotra
  • 9,981
  • 20
  • 97
  • 137
0
votes
5 answers

iPad/iPhone orientation issue

I realize there a many questions relating to this issue, however i have not found one that solves my issue. To start, I have set this code in my menu.h -(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { …
Alex Naspo
  • 2,052
  • 1
  • 20
  • 37
0
votes
1 answer

Large amount text fields for form, solutions needed

My quest to to understand how to get data from a text field to email has so far got me nowhere so im now trying a different approach (a workaround to be more precise). I have created a form in HTML, im using the mailto function because this is the…
JSA986
  • 5,870
  • 9
  • 45
  • 91