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

Swift 1.2 (Xcode 6.3 Beta 4) - CCCrypt Cannot Invoke Error

Just updated to the latest Xcode 6.3 Beta 4 and I'm getting an error I cannot seem to figure out. There error is: Cannot invoke 'CCCrypt' with an argument list of type '(CCOperation, CCAlgorithm, CCOptions, UnsafePointer, (Int), nil, UnsafePointer,…
Mavro
  • 571
  • 8
  • 19
2
votes
2 answers

After Update to OS X El Capitan and Xcode(6.3.1) simulator not listed

Last day I updated to OS X El Capitan(10.11),When I run a project in Xcode (6.3.1), I found the simulator list disappeared.I click the "run" button, Xcode Alert :Xcode cannot run using the selected device. After that, I selected the simulator as…
james
  • 643
  • 4
  • 24
2
votes
0 answers

xcode 6.3 Undefined symbols for architecture arm64

xcode 6.3 Undefined symbols for architecture arm64 but my libs support arm64 Architectures in the fat file: libavfilter.a are: armv7 i386 x86_64 arm64 and build setting architectures is armv7 arm64, Valid Architectures is armv7 armv7s arm64
吴文扬
  • 21
  • 2
2
votes
2 answers

How to get postal code in Swift viewDidLoad?

I'm a newbie in Swift and I need to set var postalCode in viewDidLoad(). As you can see on my code below, I used the reverse geocode location in didUpdateLocations but since it's asynchronous, the postalCode variable is not set in viewDidLoad(). How…
Esthon Wood
  • 315
  • 3
  • 19
2
votes
2 answers

Getting a function's return type in Swift

I realize that reflection isn't fully supported (yet) in Swift, but reflection run time methods are (apparently) supported. I'm trying to get the return type of a function at run time. Here's my example let s:Selector = "willAnimateRotation" var…
Chris Prince
  • 7,288
  • 2
  • 48
  • 66
2
votes
2 answers

Ambiguous use of "value" while implementing UIStepper

I am trying to implement a simple stepper which reflects its value onto a label. While using "Int(sender.value)" I am getting an error "Ambiguous use of value" // ViewController.swift // Stepper // // Created by Prabhu Konchada on 19/06/15. // …
Prabhu Konchada
  • 548
  • 8
  • 26
2
votes
0 answers

how to build a custom framework for pure swift in xcode 7

I want to build a custom framework in pure swift. Then I want to export that custom framework and import it into another pure swift app project. I want to do this by linking to the framework in the "Link binary with libraries" build phase. Seems…
user965972
  • 2,489
  • 2
  • 23
  • 39
2
votes
1 answer

Array of Protocol instances won't work with contains method

I have a protocol that I am using to define what makes up the content of a note. A note can have many different content types, so a protocol seemed like the best way to go. public protocol Content { var contentType: String { get } } I then have…
Johnathon Sullinger
  • 7,097
  • 5
  • 37
  • 102
2
votes
0 answers

Use of unresolved identifier 'Info' and Invalid redecoration of 'signUpViewControllerDidCancelSignUp' error

I get Use of unresolved identifier 'Info' when I enter this code: func signUpViewControllerDidCancelSignUp(signUpController: PFSignUpViewController) { if let password = info?["password"] as? String { return password.utf16count >= 8 …
Owen Bridges
  • 81
  • 1
  • 3
  • 13
2
votes
1 answer

Redrawing NSView in latest Swift (Xcode 6.3)

How to do it? setNeedsUpdate seems to be absent, and I couldn't find any recent articles on doing it, at least, in Swift.
RomaValcer
  • 2,786
  • 4
  • 19
  • 29
2
votes
2 answers

Add the "App Groups" entitlement to your entitlements file?

I'm adding a watchkit extension to an iPhone app and have set up everything correctly, I think. However, I continually get the error in Xcode that I need to "Add the 'App Groups' entitlement to your entitlements file.". (see attached) I click the…
CBGrey
  • 643
  • 7
  • 22
2
votes
1 answer

Interface builder constraints for Apple Watch: different layout even if settings is Any screen size

I have set my constraints in Xcode interface builder as following: But the layout is not the same as the one I have on my interface builder (see below). I cannot see/find any property on the watch UI elements and views that allows me to set the…
mm24
  • 9,280
  • 12
  • 75
  • 170
2
votes
2 answers

How to set multiple UIlabel in same line for all iphone devices

I am setting constraints for 4 UILabels but its not working properly in iphone 5s and it's showing properly in 6 and 6 plus. How to set proper constraints? its going right side in iphone 5s. First label, I have set x position and then space…
user4238267
2
votes
1 answer

Xcode project environment variables

How to distinguish multiple environments in iOS app? My Swift app uses external API connection and we have two API URLs - testing and productive. Is there any way how to use one variable and set its value for testing in Xcode and another value for…
Matej
  • 43
  • 1
  • 7
2
votes
1 answer

Xcode struck in validation process?

I use Xcode 6.3 , and I am trying to Validate and then submit an app to the apple store . I press Validate but its being validate but its stuck in that point , and then after long time waiting its rejected for "time out".What is the problem here…
bAthi
  • 341
  • 4
  • 20