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
0 answers

Validate failed after archive: invalid Signature. Code object is not signed at all

Up till yesterday I was able to archive, validate and submit my app project. I'm not sure what went wrong but now after Archiving the project, when I run Validate I get a message "Invalid Signature. Code object is not signed at all". I checked my…
Yosef
  • 360
  • 5
  • 16
3
votes
1 answer

JSON Parsing In Swift with this URL

Looking for advice on parsing the following link. http://www.claritin.com/weatherpollenservice/weatherpollenservice.svc/getforecast/90210 Looks to be some form of JSON but I was wondering what would be the best way of pulling this data in Swift.…
Opei
  • 253
  • 1
  • 2
  • 12
3
votes
1 answer

Xcode 6.3: 8.0 or 8.0.2 simulator

Problem: Xcode 6.3 doesn't have 8.0 simulators; I'm using swift 1.2 so i can't compile the project under earlier versions of Xcode; i have a lot of crashes of sprite kit on iOS 8.0 devices (crash reports not very helpful, them related to the…
Mikhail
  • 4,271
  • 3
  • 27
  • 39
3
votes
1 answer

I can't see values of variable into the debugger

I am in full transition to Swift and I am having a problem with the debugger. The problem is that I can't see the value of variable and class with a breakpoint. When I type into the lldb console this command for example po self, the answer…
Jeremy
  • 31
  • 3
3
votes
1 answer

Xcode 6.3.1 "A signed resource has been added, modified, or deleted" issue

My xcode version is 6.3.1, my app is a swift project with a WatchKit target. Xcode showed this message "A signed resource has been added, modified, or deleted" when I ran it on my iPhone 6. It works fine on iPhone 5s, iPad and simulator, so I guess…
Keoros
  • 1,337
  • 2
  • 13
  • 23
3
votes
1 answer

Access iPhone alarm from app?

Is there a way to access and update the native alarm settings in the iPhone from my app? I need to have a sliding alarm that changes based on the time of year and I want to use the native iPhone alarm for that. Is this possible in the iOS SDK, maybe…
TruMan1
  • 33,665
  • 59
  • 184
  • 335
3
votes
3 answers

Can you upload a binary to iTunes connect using OS x server bot?

I am using Xcode 6.3.1 and an OS x Server. is it possible to configure a bot to upload the binary to iTunes connect after successful build?
CloudSails
  • 101
  • 7
3
votes
2 answers

Rotate imageview a random degree

How can I rotate a ImageView a random degree from 0 to 360? This code let´s me rotate it 180 degrees: func rotateTimes(){ UIView.animateWithDuration(5, delay: 0.0, options: UIViewAnimationOptions.CurveLinear, animations: { () -> Void…
Torre Yan
  • 223
  • 3
  • 9
3
votes
0 answers

Easily creating a log-and-continue breakpoint in Xcode

Frequently when I need to know if I've hit a point in code I'll drop in a println("We made it this far") statement. Sometimes this will get committed, or a coworker commits one of theirs, and eventually our codebase gets littered with them. An…
wjl
  • 7,143
  • 1
  • 30
  • 49
3
votes
1 answer

Xcode 6 Unknown class ViewController in Interface Builder file

I have deleted all of the original files (Main.storyboard and ViewController.M and ViewController.H) and I have created a new storyboard (I have my reasons) but when a run time error produces "Unknown class ViewController in Interface Builder file"…
mdavidson16
  • 43
  • 1
  • 5
3
votes
1 answer

Unwind segue in multiple storyboards environment

My app has more than two storyboards. In storyboard A, it has navigation view controller, root view controller and several view controllers. It also has an unwind segue, like returnToTopScreen. Storyboard B has several view controllers. At…
kmugitani
  • 615
  • 1
  • 6
  • 13
3
votes
2 answers

Update constraints menu all greyed out

When I try to update constraints in Xcode 6.3, I can't because the menu is completely or partially greyed out. http://hostthenpost.com/uploads/aa150beda71316c338da81c5e301d149.png Why is this? How do I fix it? The app is a basic, simple Hello World…
Justin Pease
  • 71
  • 2
  • 6
3
votes
1 answer

Should app extensions have their own Localizable.strings?

Currently using Xcode 6.3 In our (open source) application we have two targets: Our main application 'Client' An action extension 'ShareTo' Both targets have localized strings via NSLocalizedString(). When I "Export for Localization", I see one…
Stefan Arentz
  • 34,311
  • 8
  • 67
  • 88
3
votes
0 answers

Add Test Target to existing project in Xcode 6.3

Note: this question is related, but the answer given there does not solve the issue for me: XC Testing Framework iOS(XCode 6.1) Test session exited(80) without checking in I have existing iOS code, and I want to start writing XCTest cases using my…
physicalattraction
  • 6,485
  • 10
  • 63
  • 122
3
votes
1 answer

How to make XCode bot build at specific time of the day if and only if there have been new commits?

Issue: I am currently running the XCode bot periodically at a specific time of the day. However I only want the bot to make a new build iff there are any new commits in the repo. Each day at that specific time, it should check if there are new…
Shobhit Puri
  • 25,769
  • 11
  • 95
  • 124