Questions tagged [xcode6.3]

Related to the specific version of the Apple's IDE, Xcode 6.3. It was released on April 8, 2015.

Version 6.3 of Apple's Xcode IDE.

238 questions
102
votes
3 answers

Xcode playgrounds can't access swift files in Sources folder

I just upgraded to Xcode 6.3 and they offered something new to the Playgrounds. If you make a new playgrounds and you open the project navigator, you will see a Sources folder and inside that there is a "SupportCode.swift" file. At the top of that…
DerrickHo328
  • 4,664
  • 7
  • 29
  • 50
82
votes
10 answers

Xcode 6.3 freezes/hangs after opening XIB file

After upgrading to Xcode 6.3 (release version), Xcode now freeze every time I open a XIB/Storyboard file that includes an IB_DESIGNABLE view that uses a custom font for any projects and includes a custom font (not necessarily to have reference to…
picciano
  • 22,341
  • 9
  • 69
  • 82
65
votes
7 answers

WatchKit apps must have a deployment target equal to iOS 8.2 (was 8.3)?

I just downloaded Xcode 6.3 beta 4, and my WatchKit app now fails to build with an error: Embedded Binary Validation Utility Error error: WatchKit apps must have a deployment target equal to iOS 8.2 (was 8.3) The iOS app and the project actually…
UberJason
  • 3,063
  • 2
  • 25
  • 50
49
votes
5 answers

Xcode 6.3 code completion too slow

I've just updated Xcode to version 6.3. I'm working on a project in Swift with some imported Objective C code. I also use Cocoapods. I had the same issue with the Xcode 6.3 beta. I've seen and tried all other StackOverflow answers with no luck. So…
MrTourkos
  • 1,922
  • 2
  • 18
  • 22
39
votes
5 answers

Objective-C method conflicts with optional requirement method Swift

After the Xcode update, the compiler began to throw an error on the working code (both functions are in the AppDelegate.swift). func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool { …
37
votes
8 answers

@import causes parse issue: "could not build module"

After updating with Xcode 6.3, I found something strange things with my projects. Below codes causes parse issue that says "Could not build module 'AgendaFramework'", the AgendaFramework is my custom embedded framework for ios8: @import…
jeeeyul
  • 3,727
  • 1
  • 24
  • 37
33
votes
5 answers

Xcode 6.3: Crash while archiving a project

I have just got Xcode 6.3 installed and immediately receiving a Xcode crash while archiving a project. And actually, I don't know how to proceed. I cannot push my product to iTunes Connect. I am also checking if I can roll back to Xcode 6.2. …
ilia510
  • 903
  • 7
  • 15
31
votes
4 answers

Interface Builder appears blurry on retina display in Xcode 6.3

I just recently downloaded the latest public release of Xcode (6.3) and I noticed the storyboard for my app is now low res on my Retina MacBook Pro. Images, text and standard UI elements all appear blurry. On the actual device everything looks fine…
Max Stein
  • 320
  • 2
  • 7
26
votes
6 answers

Xcode 6.3 is crashing on Project Rename

I just updated my Xcode 6.3. I am getting an issue while project renaming. Is there any solution? And in some case it is showing mymac instead of simulators or devices in schema - device section on top left side.
PJR
  • 13,052
  • 13
  • 64
  • 104
25
votes
5 answers

Cannot subscript a value of [AnyObject]? with an index of type Int

This is in a class extending PFQueryTableViewController and I am getting the following error. The rows will be PFUser only. Why am I not able to cast it? Is there a way around this? The error is: Cannot subscript a value of [AnyObject]? with an…
user1406716
  • 9,565
  • 22
  • 96
  • 151
21
votes
4 answers

How to remove one of the cocoa pods plugin from Xcode project

anyone know how to remove one of the cocoa pods plugin from Xcode project ? For example, I have installed afnetworking and nyximagekit in my project. Now, I want to remove nyximagekit but keep afnetwoking. How to do that ?
vic3ai
  • 279
  • 1
  • 2
  • 10
21
votes
6 answers

Images not shown on Apple Watch

My Apple Watch app images showing properly on Apple Watch Simulator,Like on menu modules menu images showing properly on simulator. I uploaded my application on iTunes store , Apple Reviewed app & failed it by saying menu images are not showing on…
Anupam Mishra
  • 3,408
  • 5
  • 35
  • 63
19
votes
2 answers

Swift 1.2 (Xcode 6.3) removed xor '^' operator for Bool value?

This sample code on Xcode 6.3 ... var str1 = "" var str2 = "" if str1.isEmpty ^ str2.isEmpty { // do something. } displays the following error. '^' is unavailable: use the '!=' operator instead I cannot find the spec in Apple documentation. Is…
Mitsuaki Ishimoto
  • 3,162
  • 2
  • 25
  • 32
18
votes
3 answers

Build error when trying to override an initializer in Xcode 6.3 Beta 3

The following code shows build error in Xcode 6.3 Beta 3. The code works in Xcode 6.2 and Xcode 6.3 Beta 2. class MyView: UIView { override init() { super.init() // Some init logic ... } override init(frame: CGRect) { …
Evgenii
  • 36,389
  • 27
  • 134
  • 170
17
votes
9 answers

Embedded Binary Validation Utility Error

Since yesterday Xcode is doing stupid things while trying to run my WatchKit app on my iPhone. It gives me the error: Embedded Binary Validation utility Error Error: warning: Is a directory It's not very helpful and it seems like it's complaining…
BalestraPatrick
  • 9,944
  • 4
  • 30
  • 43
1
2 3
15 16