Questions tagged [xcode6]

Xcode 6 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.

Xcode is Apple's integrated development environment (IDE) for developing OS X and iOS apps. The version 6 was presented at the WWDC on June 2nd 2014. The new features of Xcode 6 include the new programming language Swift, the playground as an interactive way to play with the code and a more visual debugger.

The latest production version of the IDE is Xcode 6.4. Download Here

The important enhancements are described here and here.

This tag is for IDE only questions with the version 6. Questions related to the programming languages should go to the correct tag , , and . When they are only related to the os and .

6121 questions
3
votes
1 answer

XMPPFramework - How to register a new user account

I'm trying to use XMPPFramework to connect to an Openfire server and create a new user account. If I am already logged in as a different user, this code will create a new user account: NSXMLElement *query = [NSXMLElement elementWithName:@"query"…
Adam
  • 589
  • 3
  • 8
  • 19
3
votes
3 answers

Xcode 6 : Linker error with Google Analytics

I'm currently getting this error Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_ASIdentifierManager", referenced from: objc-class-ref in libAdIdAccess.a(TAGActualAdIdAccess.o) ld: symbol(s) not found for architecture x86_64 clang:…
TdoubleG
  • 489
  • 1
  • 4
  • 17
3
votes
1 answer

iOS Localization/Internationalization of Settings Bungle using Xcode 6 XLIFF export

Background: Xcode 6 adds a quick export function that creates a single XLIFF file for each language (just select your project from the File navigator. Then choose the menu item Editor → Export For Localization). Issue: It works really well and in…
Quark
  • 1,578
  • 2
  • 19
  • 34
3
votes
2 answers

Ways to delete uninstalled (greyed) constraints in XCode

Whenever an auto-layout constraint is "deleted" from the Size Inspector, it's not actually deleted, merely "uninstalled". After this point, it's still there, just faded/greyed out, visible on the scene hierarchy on the left and when "All" is…
MikeOShay
  • 522
  • 1
  • 7
  • 17
3
votes
1 answer

How to cd to working directory in Xcode Run Script?

I am attempting to add Parse.com crash reporting to my application, but ran into an issue that I can't seem to find a fix to. Their documentation states you should setup a Run Script with the following script: export PATH=/usr/local/bin:$PATH cd…
BlueBear
  • 7,469
  • 6
  • 32
  • 47
3
votes
2 answers

Password protect a swift app with Touch ID

I am creating an app where a user can store other peoples information and I would like to allow users to protect the information stored in my app using a passcode or Touch ID (If their device supports it). I have already got the Touch ID part…
MoralCode
  • 1,954
  • 1
  • 20
  • 42
3
votes
1 answer

Adding iAd Framework and AdSupport Framework to Build Phases - Xcode 6

How, in Xcode 6, can I add the iAd Framework and AdSupport Framework to Build Phases? I went to the Build Phases page, but my only options are to add: "New Copy Files Phase", "New Run Script Phase", and "New Headers Phase". Which of those do the…
tdh
  • 884
  • 1
  • 11
  • 22
3
votes
1 answer

How do I change the color of the storyboard to see white text?

I'm building an iphone application with a dark background and some white text. When editing my storyboard the white elements are lost into the background. Is there a way Purely for Editing to use a dark background in the storyboard file? Thanks
Marcus
  • 9,032
  • 11
  • 45
  • 84
3
votes
2 answers

UIWebView stretched when dismissing UISplitViewController popover on iPhone 6 Plus

I am using a split view controller with a UIWebView in the details view. On the iPhone 6 Plus, in landscape orientation, when I dismiss the master view to expand the details view to fit the whole screen, the content of the UIWebView gets stretched…
John Chapman
  • 878
  • 3
  • 14
  • 28
3
votes
0 answers

Cannot see debug symbols in Swift app extension

I created a custom keyboard in Swift, and made it crash intentionally inside my keyboard target. But I could not see any debug symbol in the crash report. I've set all "Strip Debug Symbols During Copy" to NO in Xcode 6.1.1 or 6.2 Beta 3. Here is the…
Bruce You
  • 167
  • 1
  • 9
3
votes
1 answer

__curl_rule_01__ declared as an array with a negative size

I added arm64 support in the build settings of my app now get this error in the curlrules.h, Here is the code where the error occurs: typedef char __curl_rule_01__ [CurlchkszEQ(long, CURL_SIZEOF_LONG)]; //where the error occurs
3
votes
0 answers

Error dialog "The file 'exclude' doesn't exist" when creating a new git-backed XCode project

When creating a new project in XCode 6, if I check the "Source Control: Create Git repository on My Mac" button in the Save sheet, the project is successfully created, but I get an error dialog saying The file "exclude" doesn't exist Also, a git…
Bob Gilmore
  • 12,608
  • 13
  • 46
  • 53
3
votes
1 answer

core data errors adding new record

I'm using Xcode 6.1.1 with Swift. The project is using core data to save Sightings import Foundation import CoreData @objc(Sighting) class Sighting: NSManagedObject { @NSManaged var lat: Double @NSManaged var lng: Double @NSManaged var…
Dandan
  • 650
  • 1
  • 10
  • 17
3
votes
1 answer

Static library and cocoapods with Xcode 6.1.1 - ld: library not found Error

Not sure it is related to Xcode 6.1.1 or Cocoapods 0.35.0. I have generated new static iOS library with Xcode 6.1.1. SUCCESS (without cocoapods) Generate simulator and Device library Lipo to both and generate FAT MyLib.a static final lib Create…
harshit2811
  • 827
  • 1
  • 7
  • 21
3
votes
2 answers

Text fields in UIAlertViewController with rounded rect border style. (Swift)

I have no problem adding text fields to an UIAlertController but I find these text fields to be hideous. Does anyone know how to make them more appealing? My code to add a text field: let pincodeAlert:UIAlertController = UIAlertController(title:…
Petri
  • 1,020
  • 3
  • 14
  • 24
1 2 3
99
100