Questions tagged [xcode5.1]

Xcode 5.1 includes SDKs for OS X 10.9 Mavericks, OS X 10.8 Mountain Lion, and iOS 7.1.

Xcode 5.1 includes SDKs for OS X 10.9 Mavericks, OS X 10.8 Mountain Lion, and iOS 7.1.

  • Adds new Auto Layout constraints inspector with support.
  • Adds Quick Look support in the debugger for custom object types.
  • Improves ability to resolve symbols in Instruments.
  • Updates the iOS standard architecture setting to include 64-bit.
  • Includes additional bug fixes and stability improvements.

You can obtain Xcode in Mac App Store for free.

270 questions
1
vote
0 answers

Constrain UIView in Xcode Interface Builder such that it is as large as "union" of its subviews

I would like to add a subview inside a storyboard as follows: it should contain a UILabel and a UISwitch and should be just large enough such that the two controls fit inside with a constant horizontal distance in between them. To this end I do the…
Drux
  • 11,992
  • 13
  • 66
  • 116
1
vote
4 answers

How to Close NSPopover programmatically

I want to know how to close NSPopover programmatically, not by touching outside, because I want to assign it to an action (such as KeyDown Enter Key or other shortcut) because I open my NSPopover with a shortcut, it would be more logical to close…
Jesus
  • 8,456
  • 4
  • 28
  • 40
1
vote
0 answers

Lost .m files after XCode crash

I am on the verge of a nervous breakdown. I am currently working on a project in XCode, which suddenly crashed on Build. When I restarted XCode, two of my .m files had totally disapeared. Sadly, I hadn't yet commited… Any ideas if it is possible to…
Benjamin
  • 8,128
  • 3
  • 34
  • 45
1
vote
0 answers

Exported symbols in .o file not getting exported in .dylib

I have recently encountered what appears to be a bug in building shared libraries (.dylib files) from compiled C++ code (.o files) on Mavericks (OS X 10.9.4, Xcode 5.1). Key symbols from one particular implementation class seem to be exported in the…
Chuck Fry
  • 387
  • 1
  • 2
  • 10
1
vote
1 answer

Xcode 5.1.1 Auto completion not working

for already created ViewControllers showing auto suggestion but newly creating view controllers not showing auto suggestion please help me out. Thanks in advance.
Anjaneyulu Battula
  • 1,910
  • 16
  • 33
1
vote
2 answers

Enabling Core data into existing Project does not work

I have created a Project in Xcode 5.1.1 without core data support. Now i am trying to get the core data support. Steps: 1) File -> New -> File -> Data Model -> Added. It created : samplecd.xcdatamodeld 2) Added Entity: myname type: String 3) …
DrunkenMaster
  • 1,218
  • 3
  • 14
  • 28
1
vote
2 answers

Enabling data Core in Xcode 5.1.1

I have already the Xcode project in xcode 5.1.1, and i am unable to add .xcdatamodel file as descriped in the below link. http://wiresareobsolete.com/2009/12/adding-core-data-existing-iphone-projects/ Ie: From Xcode, control-click on the Resources…
DrunkenMaster
  • 1,218
  • 3
  • 14
  • 28
1
vote
0 answers

OCMockito XCTest does not refresh tests when changes are made and tested

I'm running into an issue where my iOS unit tests correctly execute the first time I run them on the device, but refuse to acknowledge any changes made after the initial run on either the device or simulator. If I uninstall the app and clean the…
Alex Stone
  • 46,408
  • 55
  • 231
  • 407
1
vote
2 answers

Xcode 5.1 breakpoints not working

Since today my breakpoints stopped working in Xcode 5.1. I have an unrecognized selector sent to an NSArray, but the debugger does not show the line where the error occurs. It always points to main.m 2014-07-10 20:12:33.827 App[2936:60b]…
Drew
  • 145
  • 7
1
vote
1 answer

How to detect which NSTableView is selected

I have an NSViewController with 4 NSTableViews inside (View based), all of them have NSTextFields and I want to call a method for triggering an action after editing each of them called -(void)controlTextDidEndEditing:(NSNotification *)obj{ …
Jesus
  • 8,456
  • 4
  • 28
  • 40
1
vote
1 answer

Issue Adding New To-Do Item in “Start Developing iOS Apps Today”

I am new to iOS XCode and am attempting to complete the initial example. Everything works as expected and in debugging with breakpoints I cannot seem to set a value from the Add To-Do Item to show up in Self.textField, so the program just skips each…
1
vote
1 answer

How to use keyDown in NSObjectController

I'm developing an ap for MacOSX with Xcode5 my initial window is NSObjectController based, and I'm trying to capture keyboard events by using the common method I used on NSWindowControllers called -(void)keyDown:(NSEvent *)theEvent{} but this…
Jesus
  • 8,456
  • 4
  • 28
  • 40
1
vote
0 answers

On mac 10.9, symbols are not getting exported from dylib (qt 5.3) project

I am able to build qt 5 project (.pro) on mac 10.9 successfully on xcode 5 using Run script. But when I try to see the symbols using: nm -a libmyproject.dylib, then it shows nothing. I exported my class using: class…
1
vote
0 answers

Building 64-bit (arm64) iOS app with deployment target 4.3 on Xcode 5.1.1

I am able to build an iOS fat binary with 32-bit (arm7, arm7s) and 64-bit (arm64) architectures with a iOS deployment target of 4.3. I know from Apple's 64-bit conversion guide that the minimum deployment target is supposed to be 5.1.1. Even if…
user444731
  • 173
  • 1
  • 6
1
vote
1 answer

Committing Crashlytics Framework on GIT

I have added Crashlytics to my iOS project, step by step, as instructed by Crashlytics. Then I went ahead and tried to commit the new modifications/Additions. However, when i check Crashlytics.h under Header folder under Crashlytics.framework from…
Shivam Mishra
  • 137
  • 1
  • 12