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

How to animate dismissal of one view Controller to another using custom animation?

I just figure out how to animate insertion of one viewControll [self transitiontoViewController:self.filterController duration:.5 options:UIViewAnimationOptionTransitionNone animations:^{ [self.filterController.view…
Anonymous White
  • 2,149
  • 3
  • 20
  • 27
0
votes
1 answer

Close UIViewController on button click

I am opening a viewcontroller(with a navigation bar and a bar button item for closing the view controller).This is view controller is for displaying information to the user when he clicks on a 'Help' button.The navigation is like this:…
user1550951
  • 369
  • 2
  • 9
  • 26
0
votes
1 answer

Linker command failed with exit code 1, XCode 4.5, Facebook SDK 3.1

I'm trying to integrate the Facebook SDK into my xcode project, and I've sort of hit a stumbling point. After some research, I tried making sure I had the latest version of the FacebookSDK, as those who had the same errors as I were able to resolve…
0
votes
2 answers

Xcode 4.5 iOS 6 error uploading to itunes

I have recently upgraded to XCode 4.5 and have been trying to release a new version of my app. I went to the itunes connect portal and prepared it for upload. I changed the version numbers in my bundle. Now I archive it, and validate it. No…
Jameo
  • 4,507
  • 8
  • 40
  • 66
0
votes
1 answer

How to Call webservice and get json response using phonegap for iphone

I'm very new to phonegap. I installed the phonegap2.1.0 in xcode4.5. Now phonegap is working fine. But how can I call a webservice and get a json response for phonegap? My code is below, but it isn't working. Can anybody help…
0
votes
1 answer

uinavigationcontroller warning in xcode 4.5.1

I did my coding in xcode-4.2 and after updating xcode-4.5.1,My app running perfectly,while clicking window to navigate it shows following error. Warning: Attempt to present on whose view…
Fazil
  • 1,390
  • 2
  • 13
  • 26
0
votes
1 answer

iOS Interface Builder lock views to right of their table cells

In the form pictured below, as you can see, all of the items are aligned to the right in portrait mode. However, in landscape mode, the text box and switch do not move to the right with the detail items. The detail cells use an apple template, while…
Peronix
  • 139
  • 1
  • 9
0
votes
1 answer

How to scale image to 0.25 or resize image to 478*640 in iOS6

In my application i have image with dimension 1936*2592 and size upto 6 MB. i need scale image to 0.25 or resize image to 478*640 and then upload it to server. I have tried lots of ways to do it in ios6 but failed imageData=…
Ajit Satarkar
  • 717
  • 6
  • 20
0
votes
2 answers

What would be the Objective-C equivalent of this java command:

data.date = new Date(jObjectTip.getLong("createdAt") * 1000); That command is used to grab data from FourSquare.
Anonymous White
  • 2,149
  • 3
  • 20
  • 27
0
votes
1 answer

When will viewWill/DidAppear/Disappear is called anyway and how exactly does it work?

I understand that viewWillAppear will be called when duh.... when the the view is about to appear. But how does IOS know that a controller's view is about to appear? When exactly that and how it is implemented? For example, does the…
Anonymous White
  • 2,149
  • 3
  • 20
  • 27
0
votes
1 answer

NSTableView not alternating colors

I am using Xcode 4.5.1 on 10.7 and am just getting started. I wanted to have alternating colored rows in my table view, and was pleased to see the checkbox that would seem to turn this feature on. I notice that while the table view is selected, the…
Daniel Saban
  • 478
  • 3
  • 16
0
votes
2 answers

how to view different detailView of selected row on iOS Master Detail

I'm working on master detail app and i would like to view different detailView of selected row. and to be my question clear i give you example here: Master Detail detail 1 > detail 2 > the target is when i press [detail 1 >] give…
HaluCOM
  • 1
  • 2
0
votes
2 answers

Xcode 4.5 different iPhone backgroud on iPhone 4s and 5

I have made two different background images for my iPhone app: one in 640x960px (iPhone4s) and one in 640x1136px (iPhone5). But when I create the application layouts in the Xcode 4.5 Main Storyboard, how do I define and create it for both iPhone4s…
Peter
  • 1,848
  • 4
  • 26
  • 44
0
votes
1 answer

When debugging how do we know the frame of a UIView or how is it stored?

Take a look at the picture below I am looking for UIView and I cannot find this so called _frame struct. How internally exactly apple store a UIView frame? And what would be the easiest way to find that out during debugging?
Anonymous White
  • 2,149
  • 3
  • 20
  • 27
0
votes
3 answers

What would be the equivalent of doing this with NSOperation?

[self performSelector:@selector(stopPulling) withObject:nil afterDelay:0.01]; The code is fine. I just think that using NSOperation and block should be the way to go for the future. I am familiar with NSOperation. I just want to do the same thing…
Anonymous White
  • 2,149
  • 3
  • 20
  • 27
1 2 3
99
100