Questions tagged [xcode4.5]

Xcode 4.5 is the Sep. 19, 2012 release of Apple's integrated development environment (IDE) for Mac OS X and iOS. This tag should only be used for questions about this specific version of Xcode, and not for general Mac or iOS programming topics. Use [cocoa] for Mac programming questions, or [cocoa-touch] for iOS (formerly iPhone OS) programming questions.

Xcode 4.5 is the Sep. 19, 2012 release of Apple's integrated development environment (IDE) for Mac OS X and iOS.

This tag should only be used for questions about this specific version of Xcode, and not for general Mac or iOS programming topics. Use for Mac programming questions, or for iOS for general programming-related questions. 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.

Changed Features for September 19, 2012

  • Includes iOS SDK: iOS 6 (incl. support for the 4-inch Retina Display on iPhone 5 and iPod touch 5th generation, and added auto-layout support for iOS)
  • Includes Mac SDK: OS X Mountain Lion 10.8
  • New Localization Workflow
  • Updated some minor Objective-C syntax
  • OpenGL Debugger
  • Enhanced for Mac Retina
  • Bug Fixes

Bug Fix Releases:

  • Xcode 4.5.1, released on October 3, 2012, shipped bug fixes and stability improvements.
  • Xcode 4.5.2, released shortly afterward, added support for iPad Mini and iPad with Retina Display, and bug fixes and stability improvements.

See for more information.

1650 questions
9
votes
2 answers

Developing fullscreen 4inch app in xcode

Possible Duplicate: How do I support the taller iPhone 5 screen size? How to make my app 4inch-ready? My app in iOS6GM simulator looks not 4inch-sized. Is there any option in xcode to use all 4 inches?
k06a
  • 17,755
  • 10
  • 70
  • 110
8
votes
1 answer

How to open another screen instead of Main Screen when push notification received

I need to know how to open another viewcontroller instead of the main view controller when the push notification received please help me thanks in advance here is my code" - (BOOL)application:(UIApplication *)application…
8
votes
1 answer

How can a UIViewController inside a UIPageController get touch events?

It seems that the button simply doesn't get pressed. I tried: UIPageViewController Gesture recognizers However, here is the catch if page transition of UIPageViewController is UIPageViewControllerTransitionStyleScroll…
Septiadi Agus
  • 1,775
  • 3
  • 17
  • 26
8
votes
4 answers

fatal: Unable to create '/.git/index.lock': File exists

When I try to rename any image name in my Xcode Project it gives following error. fatal: Unable to create '/.git/index.lock': File exists. If no other git process is currently running, this probably means a git process crashed in this repository…
Desert Rose
  • 3,376
  • 1
  • 30
  • 36
8
votes
1 answer

corebluetooth Reading RSSI error:The operation was cancelled

I'm developing an app using Corebluetooth framework, and connect to a BLE device to get RSSI value. I set a function to read RSSI periodly, the timer code is below NSTimer *timer; timer = [NSTimer scheduledTimerWithTimeInterval:1.2f target:self…
momoyo
  • 106
  • 6
8
votes
1 answer

Migrating old xcode projects into latest version

I have problem with memory management and leaks(Potential leak of an object) of old xcode projects.Can i Migrate these projects to new xcode4.5 with Automatic reference counting to overcome the above issues. If this possible means how can i made it?…
dineshsurya
  • 215
  • 1
  • 10
8
votes
1 answer

International keyboard crashing the app on the device

I have a problem when testing the app I wrote on the iPhone where I have set up an international keyboard. The iPhone remembers the last input layout I used (i.e when I'm in messages and I'm using the hebrew keyboard, the next time I will use the…
oridahan
  • 574
  • 1
  • 7
  • 20
8
votes
1 answer

Simulator does not show button text

I'm learning to build iPhone apps with XCode 4.5.2 and I noticed something strange. As you can see at the address https://i.stack.imgur.com/purI8.jpg the text inside one of the buttons is not displayed in the iOS6 simulator. I also tried to move the…
Soel
  • 343
  • 2
  • 8
8
votes
2 answers

architecture issue on compiling unit test using GHUnit

Am using Xcode 4.5. Recently i have download GHunit framework and setup it by following link. On compiling the target, am getting the error mentioned below. need your valuable suggestion. Undefined symbols for architecture i386: …
yokks
  • 5,683
  • 9
  • 41
  • 48
8
votes
0 answers

IOS6: Storyboard Localization does't work for placeholder of a searchbar

I'm using the iOS6 new localization workflow can share a single base .storyboard file for multiple locales. The problem is placeholder field of UISearchBar doesn't get localized. Below is two string files for localization. For English strings file…
z33
  • 1,193
  • 13
  • 24
8
votes
3 answers

iOS storyboard: set a background color to prototype cell

I am facing a very strange issue with XCode 4.5. I tried to set a background color to a prototype cell in my storyboard, but in interface builder the cell color doesn't change, even when I run it on my device it doesn't use the color I set. I tried…
dvkch
  • 1,079
  • 1
  • 12
  • 20
8
votes
2 answers

xcode 4.5 - symbols not found for architecture i386 (zbar)

I have a project which uses the zbar-sdk (a barcode scanning library). After updating my machine to xcode 4.5 and ios6sdk I am having some troubles. I was able to build to the simulator without touching anything about my project. This is using the…
woopsicle
  • 91
  • 1
  • 2
  • 3
8
votes
3 answers

iOS 6 ViewController is rotating but shouldn't

I want several of my app viewcontrollers to not rotate in iOS 6.0. This is what i did to make the rotation in iOS 6 possible: 1.) Set the windows rootviewController in application:didFinishLaunchingWithOptions: self.window.rootViewController =…
NicTesla
  • 1,626
  • 5
  • 21
  • 35
8
votes
1 answer

Xcode now generates an empty category. Why?

I noticed this while using iOS6 beta 3 When I create a new subclass of a UIViewContoller (no other parent classes generate this behavior that I've noticed), the .m file now has an empty category at the top of the file. In the past when learning…
VaporwareWolf
  • 10,143
  • 10
  • 54
  • 80
7
votes
2 answers

Method cellForRowAtIndexPath method was not get called

Am a beginner in iOS, am creating an application with the help of table view. I just run my application, while running the app, the app does not calling the method cellForRowIndexPath. Am using Json as web service. In the output screen, the parsing…
Debin Tom
  • 177
  • 2
  • 10