Xcode is Apple's integrated development environment (IDE). This tag should only be used for questions about Xcode itself, and not for general Mac or iOS programming topics. Use [cocoa] for Mac programming questions, and [cocoa-touch] or [ios] for iOS programming questions.
558
votes
5answers
122k views
How can I disable ARC for a single file in a project?
I am using ARC successfully in my project. However, I have encountered a few files (e.g., in unit tests and mock objects) where the rules of ARC are a little more fragile right now. I recall hearing ...
315
votes
5answers
64k views
How do I set up NSZombieEnabled in Xcode 4?
How do I set up NSZombieEnabled and CFZombieLevel for my executable in Xcode 4?
158
votes
13answers
65k views
How to enable NSZombie in Xcode?
I have an app that is crashing with no error tracing. I can see part of what is going on if I debug, but can't figure out which object is "zombie-ing".
Does anybody know how to enable NSZombie in ...
1021
votes
7answers
219k views
How to “add existing frameworks” in Xcode 4?
I can't find the good old "Add existing frameworks" option. How do I do this?
We're talking about Xcode 4 DP2 (in the context of iPhone development, as far as it matters...).
47
votes
4answers
9k views
“Run > Stop on Objective-C exception” in Xcode 4?
Maybe somebody knows where is the "Run > Stop on Objective-C exception" menu in Xcode 4? I've used it sometimes in Xcode 3, but it disappeared in the new IDE.
159
votes
3answers
166k views
99
votes
13answers
217k views
How can I deploy an iPhone application from Xcode to a real iPhone device?
How can I deploy an iPhone application from Xcode to real iPhone device without having a US$99 Apple certificate?
147
votes
6answers
41k views
Build fat static library (device + simulator) using Xcode and SDK 4+
It appears that we can - theoretically - build a single static library that includes both simulator and iPhone and iPad.
However, Apple has no documentation on this that I can find, and Xcode's ...
160
votes
28answers
165k views
EXC_BAD_ACCESS signal received
When deploying the application to the device, the program will quit after a few cycles with the following error:
Program received signal: "EXC_BAD_ACCESS".
The program runs without any issue on the ...
50
votes
3answers
13k views
How to add a breakpoint to objc_exception_throw?
this was the answer from the brad larson on this
SO question
If you add two breakpoints, you should be able to debug these exceptions. To do this, go to Run | Show | Breakpoints and create two global ...
127
votes
15answers
56k views
Is it possible to get the iOS 5.1 SDK for Xcode 4.2 on Snow Leopard?
I still have Snow Leopard. I have Xcode 4.2 for iOS development. This morning I upgraded my iPhone and iPad to iOS 5.1.
But Xcode 4.2 is not detecting my device for testing. I could not find the iOS ...
87
votes
4answers
51k views
How to Empty Caches and Clean All Targets Xcode 4
I don't have the reputation to comment answers so i'll just post a new one.
Jonathan suggest here: Xcode Includes .xib files that have been deleted! that cleaning all targets and empty the caches ...
37
votes
12answers
33k views
How to force a UIViewController to Portait orientation in iOS 6
As the ShouldAutorotateToInterfaceOrientation is deprecated in iOS 6 and I used that to force a particular view to portrait only, what is the correct way to do this in iOS 6? This is only for one ...
355
votes
14answers
84k views
Git ignore file for Xcode projects
Which files should I include in .gitignore when using Git in conjunction with Xcode?
77
votes
4answers
73k views
Install xCode 3.2.3 w/ iPhone SDK 4, get “Base SDK missing”, can't see other SDKs
I created this community wiki to bind together a number of
other Q/A's I've seen here on SO. If you're here, you've probably
installed the final version of Xcode 3.2.3 with iPhone SDK 4 (download
...
268
votes
18answers
88k views
“Warning: iPhone apps should include an armv6 architecture” even with build config set
It's been a while since I've had to adjust project build settings. After upgrading to a recent SDK I'm having trouble building my ad hoc distribution configuration.
Build generates this warning and ...
257
votes
12answers
77k views
How to print out the method name and line number and conditionally disable NSLog?
I'm doing a presentation on debugging in Xcode and would like to get more information on using NSLog efficiently.
In particular, I have two questions:
is there a way to easily NSLog the current ...
186
votes
10answers
65k views
Xcode “Build and Archive” from command line
Xcode 3.2 provides an awesome new feature under the Build menu, "Build and Archive" which generates an .ipa file suitable for Ad Hoc distribution. You can also open the Organizer, go to "Archived ...
210
votes
11answers
79k views
Best way to define private methods for a class in Objective-C
I just started programming Objective-C and, having a background in Java, wonder how people writing Objective-C programs deal with private methods.
I understand there may be several conventions and ...
45
votes
6answers
21k views
How to support both armv6 and armv7s for release build in xcode 4.5
I know that this is not possible and Apple planned it this way to force the users to upgrade their devices. But I just want to know if there is some workaround or hacks in able to do this? The client ...
144
votes
4answers
20k views
What kind of leaks does automatic reference counting in Objective-C not prevent or minimize?
In the Mac and iOS platforms, memory leaks are often caused by unreleased pointers. Traditionally, it has always been of utmost importance to check your allocs, copies and retains to make sure each ...
89
votes
4answers
71k views
ios5 how to pass prepareForSegue: an object
I have many annotations in a mapview (with rightCalloutAccessory buttons). The button will perform a segue from this mapview to a tableview. I want to pass the tableview a different object (that ...
52
votes
3answers
28k views
Selectively disable GCC warnings for only part of a translation unit?
What's the closest GCC equivalent to this MSVC preprocessor code?
#pragma warning( push ) // Save the current warning state.
#pragma warning( disable : 4723 ) // C4723: ...
9
votes
0answers
23k views
How to use NSzombie in xcode? [duplicate]
Possible Duplicate:
How to enable NSZombie on Xcode 4?
My application is crashing a lot! How do I find the error through NSZombie?
Could someone give me step by step instructions to use ...
123
votes
3answers
31k views
What are the details of “Objective-C Literals” mentioned in the Xcode 4.4 release notes?
I was going through the release notes for Xcode 4.4 and noticed this:
LLVM 4.0 Compiler
Xcode now includes the Apple LLVM Compiler version 4.0, including the following newObjective-C language ...
85
votes
7answers
28k views
How can we restore ppc/ppc64 as well as full 10.4/10.5 SDK support to Xcode 4?
Since Apple only ships SDK 10.6 with Xcode4, developing PPC applications with Xcode4 became impossible. While it is possible to develop applications with Xcode4 that can also run on 10.5 and maybe ...
89
votes
7answers
32k views
Is it possible to target older iOS versions when using Xcode 4.2 and iOS 5 SDK?
I just recently downloaded the Xcode 4.2 with iOS 5 SDK package and I immediately noticed that I am unable to use my iPhone 3Gs with iOS 4.2.1 for debugging. I am only able to debug and test on my ...
46
votes
8answers
54k views
Memory leak detection tools in Xcode
Does Apple's Xcode development enviroment provide any tools for memory leak detection? I am especially interested in tools that apply to the iPhone SDK. (currently my favorite platfrom for hobby ...
43
votes
5answers
10k views
Unable to process application info.plist validation at this time due to a general error (1095)
I am creating a newsstand application. the application is ready, now i am trying to upload the app in apple store using Application Loader. While uploading the zip file its showing the error message ...
106
votes
8answers
21k views
Xcode 4.2 debug doesn't symbolicate stack call
I have a problem with Xcode 4.2 debugging in iOS 5 simulator/device. In iOS 4.x everything is ok.
NSArray *arr=[NSArray array];
[arr objectAtIndex:100];
gives me a stack trace of hex numbers.
...
123
votes
2answers
21k views
Create singleton using GCD's dispatch_once in Objective C
If you can target iOS 4.0 or above
Using GCD, is it the best way to create singleton in Objective C (thread safe)?
+ (id)sharedInstance
{
static dispatch_once_t once;
static id ...
52
votes
5answers
59k views
Reading HTML content from a UIWebView
Is it possible to the raw HTML content of a web page that has been loaded into a UIWebView?
If not, is there another way to pull raw HTML content from a web page in the iPhone SDK (such as an ...
42
votes
4answers
20k views
iPhone get SSID without private library
I have a commercial app that has a completely legitimate reason to see the SSID of the network it is connected to: If it is connected to a Adhoc network for a 3rd party hardware device it needs to be ...
55
votes
6answers
26k views
Rounded UIView using CALayers - only some corners - How?
In my application - there are four buttons named as follows.
Top - left
Bottom - left
Top - right
Bottom - right
Above this buttons there is an image view / or we can use also UIView.
Now, ...
130
votes
11answers
96k views
Xcode 4: create IPA file instead of .xcarchive
In Xcode 3.2.5 I use "Build And Archive" to create an IPA file. In Xcode 4 you can use "Product -> Archive" to archive an application in an .xcarchive bundle.
How can I create an .ipa file with Xcode ...
53
votes
6answers
22k views
Objective C Introspection/Reflection
Is there a built in method, function, API, commonly accepted way, etc. to dump the contents of an instantiated object in Objective C, specifically in Apple's Cocoa/Cocoa-Touch environment?
I want to ...
18
votes
4answers
18k views
shouldAutorotateToInterfaceOrientation is not working in iOS 6
In iOS 6 shouldAutorotateToInterfaceOrientation is not working but it work fine in iOS 5.0 or 5.1.
What should i need to change in iOS 6.
Here is my code
- ...
25
votes
2answers
15k views
Can you build dynamic libraries for iOS and load them at runtime?
Are dynamic libraries supported on iOS (iPhone/iPad)?
In Xcode, I tried to create a New project -> Framework & Library -> Cocoa Library (dynamic). In the project settings, I set the Base SDK to ...
177
votes
9answers
107k views
How to use/install gcc on Mac OS X 10.8 / Xcode 4.4
I have install Mountain Lion (Mac OS X 10.8) and now gcc doesn't seem to be available anymore. I've also installed Xcode 4.4 so there is no more /Developer directory.
I need gcc both for mac ports ...
40
votes
2answers
17k views
Making OS X Installer Packages like a Pro - Xcode4 Developer ID Mountain Lion ready pkg
Note: This is for OS X Installer packages only, packages for submission to the Mac App Store follow different rules.
Because of Mountain Lions Gatekeeper I finally had to take my PackageMaker build ...
54
votes
5answers
18k views
Change templates in Xcode
How would I change the initial templates created by Xcode when creating a new Cocoa Class.
I am referring to the comments and class name created when using Xcode's new class wizard.
113
votes
6answers
94k views
Xcode 4.4 Command Line Tools
How do I get the command line builds tools installed with Xcode 4.4 / Mac OS X v10.8 (Mountain Lion)?
Unlike Xcode 4.3 there is no installer (it's just a bundle).
It looks like all ...
2
votes
1answer
182 views
Syntax help - Variable as object name [duplicate]
Possible Duplicate:
create multiple variables based on an int count
Objective C Equivalent of PHP's “Variable Variables”
How would I create and reference an object using a ...
189
votes
32answers
209k views
iPhone app signing: A valid signing identity matching this profile could not be found in your keychain
I'm pulling my hair out over this. I just downloaded the iPhone 3.0 SDK, but now I can't get my provisioning profiles to work. Here is what I have tried:
Delete all provisioning profiles
Delete ...
142
votes
12answers
160k views
Xcode 4 - “Valid signing identity not found” error on provisioning profiles on a new Macintosh install
I had a Macintosh I used to develop iPhone apps with using XCode 4.
I now have a new Macintosh with a new install of... everything.
When opening Xcode projects built on the old Mac, I cannot run the ...
76
votes
4answers
20k views
presentViewController: crash on iOS <6 (AutoLayout)
This is a weird crash I am getting. The crash happens when I press a button that goes to a certain ViewController. The line which it crashes on is:
DestinationInformationViewController *info = ...
99
votes
14answers
30k views
Xcode 4 - slow performance
I have an issue with Xcode 4 really responding very slowly to user interactions, e.g. editing code, scrolling areas etc. This particularly happens with larger scale projects with many controllers/view ...
240
votes
8answers
57k views
File is universal (three slices), but it does not contain a(n) ARMv7-s slice error for static libraries on iOS, anyway to bypass?
I upgraded Xcode version and when using external static libraries, I get this message:
ld: file is universal (3 slices) but does not contain a(n) armv7s slice: /file/location for architecture ...
48
votes
3answers
28k views
Xcode @property attributes (nonatomic, copy, strong, weak)
Can some one explain me in detail when I must use which properties and explain what each does? Some sort or example would be great also.
I have made a singleton in which I have attributes, I dont ...
35
votes
6answers
19k views
Xcode 4 failure to symbolicate Crash Log
I have just updated my Xcode to 4.0.1. Now I have a problem with the symbolication of the crash logs received from my tester and even from my phone too.
When I build the AdHoc distribution I am ...

