Questions tagged [xcode4.4]

Xcode 4.4 is the July 2012 release of Apple's integrated development environment (IDE) for Mac OS X and iOS. USAGE NOTE: Use this tag only for questions that are specific to this version of Xcode, and not for general Mac or iOS programming topics. Use [cocoa] for Mac programming questions, and [cocoa-touch] or [ios] for iOS programming questions.

Xcode 4.4, Apple's integrated development environment (IDE) for Mac OS X and iOS, was released on July 25, 2012.

Use this tag for questions that are specific to Xcode 4.4, and not for general programming questions. Use the or tags for macOS programming questions; use the or tags for iOS (formerly iPhone OS) programming questions; for questions about the Objective-C language and its features, use the tag; also, avoid adding the Xcode tag if your question would stay the same if you would use any other editor for writing your program code.

New Features:

  • runs on both Mac OS X Lion (10.7) and OS X Mountain Lion (10.8) and is the first version of Xcode to contain the OS X 10.8 "Mountain Lion" SDK.

Changes:

  • new LLVM integrated assembler for ARM which improves compilation times for iOS apps. This assembler uses only Unified Assembly Language (UAL) assembly code; projects that use manually generated assembly code may need to be updated.

Source: Release notes for Xcode 4.4

See for more information.

187 questions
101
votes
12 answers

Xcode 4.4 error - Timed out waiting for app to launch

yesterday I installed Xcode 4.4. I'm working on a project which needs to run on ios 4.1 upwards, supporting iOS device with camera. Until I installed Xcode 4.4 everything went well, and I can test app on iphone 3gs and 4s. After I installed Xcode…
notsoux
  • 1,605
  • 3
  • 14
  • 19
77
votes
7 answers

xcrun: Error: could not stat active Xcode path '/Volumes/Xcode/Xcode45-DP1.app/Contents/Developer'. (No such file or directory)

I've been beating my head against the desk all day trying to fix this!!! I have tried the suggested xcode-select -switch /path/to/xcode/ as suggested here but it still gives me this error! I have now completely removed XCode 4.4 and the command line…
David
  • 1,296
  • 1
  • 15
  • 25
38
votes
4 answers

Why is there @interface above @implementation?

I am wondering why there is twice @interface. One in class.h and other in class.m. For example: TestTableViewController.h: #import @interface TestTableViewController : UITableViewController @end and (automatically generated)…
Matej
  • 9,548
  • 8
  • 49
  • 66
37
votes
10 answers

Xcode 4.4 removed Icon Composer in Developer Tools

So I just upgraded to the latest and greatest Xcode 4.4 but can't find Icon Composer. It was in the Open Developer Tool menu item in Xcode 4.3 but now I can't find it anywhere. Did Apple forget to include it? How do I create icons without it? I also…
wigging
  • 8,492
  • 12
  • 75
  • 117
35
votes
3 answers

Disable Anti-Aliasing Fonts in Xcode 4.4 in Mountain Lion

It's getting pretty frustrating to keep struggling with this one. I'm not sure if it's Xcode 4.4 or Mountain Lion (I installed both simultaneously), but once again my code is being anti-aliased (font smoothing) in Xcode. I was previously able to fix…
Brent Traut
  • 5,614
  • 6
  • 29
  • 54
29
votes
1 answer

Automatically @synthesized properties in Xcode 4.4

From the Xcode 4.4 release notes: The compiler automatically calls @synthesize by default for unimplemented @properties What exactly does the new default synthesizer look like? Does it create a variable of the same name as the property (or does…
Thilo
  • 257,207
  • 101
  • 511
  • 656
28
votes
7 answers

Some of my unit tests tests are not finishing in XCode 4.4

I have seen people posting about this here and elsewhere, but I haven't found any solution that works. I am using XCode 4.4 and have a bunch of unit tests set up. I have ran them all before on this project, so I know that they do pass/fail when they…
Logan Serman
  • 29,447
  • 27
  • 102
  • 141
21
votes
2 answers

Lost completion in #import "myFile.h"

Since I had Xcode 4.4, I have lost the completion when I want to import file on my classes. I have to write the file entirely (The problem appears only in the import scope, it works elsewhere) Has anyone the same problem and know how to figure out ?
booker
  • 1,256
  • 1
  • 12
  • 18
16
votes
8 answers

Permission Denied when running Mac app after upgrading to XCode 4.4

I had a working Mac application until I updated to XCode 4.4 and Mountain Lion. Now the application still compiles, but when I try to run it I get an error message. error: failed to launch…
Dennis
  • 693
  • 1
  • 6
  • 16
14
votes
1 answer

Localization - Add additional language to localizable.strings file

I have found this post about how to add localization to an app. The answer is very extensive and very helpful. There is just one thing: When selecting the 'Localizable.strings' file I open the File Inspector and I click on the button 'Make…
Brabbeldas
  • 1,939
  • 4
  • 20
  • 32
14
votes
3 answers

How do I change teams in Xcode 4.4

In 4.3 and under the first time you tried to do a team based action, such as refresh provisioning profiles, it would ask you to log in. It no longer does this in 4.4, it just assumes a team and refreshes... how do I teach Xcode there are multiple…
ima747
  • 4,667
  • 3
  • 36
  • 46
13
votes
2 answers

XCode 4.4 iOS 5.1 Simulator problems

i updated my mac book to mountain lion and Xcode to the 4.4 version. In the pre version I had no problems with closing the iOS simulator and Xcode stopped automatically the building process but now if I close the iOS simulator the build process in…
Luckfried
  • 131
  • 5
13
votes
4 answers

How to uninstall Xcode 4.4 command line tools (Mac OS X 10.8 Mountain Lion)?

This SO post explains very well how to install command line tools for Xcode 4.4. But how to uninstall them?
user456584
  • 86,427
  • 15
  • 75
  • 107
12
votes
4 answers

Storyboard in Xcode is so slow

I have 150 UIViewController in Storyboard and scrolling between these Views is so slow. I can't zoom in and zoom out easily and it takes some serious time to do sty. I'm on MBPR and I installed Xcode 4.4 Spec: 2.3GHz / 16G / 256 which I think it's…
Maziyar
  • 1,913
  • 2
  • 18
  • 37
11
votes
5 answers

How to compile distributable Fortran binaries on Mac OS X Mountain Lion?

Since Apple have stopped distributing gfortran with Xcode, how should I compile architecture independent Fortran code? I have Mac OS X Mountain Lion (10.8), and XCode 4.4 installed, with the Command Line Tools package installed. Apple's Native…
Alex Leach
  • 1,199
  • 2
  • 12
  • 26
1
2 3
12 13