Questions tagged [xcode6-beta6]

Xcode 6 beta 6 was a pre-release version of Xcode 6 released on August 18, 2014.

68 questions
0
votes
0 answers

addPersistentStoreWithType method strange compiler error

With Xcode 6 beta 6 I got the following compiler error, at this line: persistentStoreCoordinator.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: storeURL, options: [:], error: nil) for argument: NSSQLiteStoreType 'NSString'…
János
  • 32,867
  • 38
  • 193
  • 353
0
votes
1 answer

Unknown class in Interface builder error after renaming UIViewController class

I am stumped by this problem. I've searched and tried all of the other solutions regarding this error. Unknown class _TtC4Addr24difficultyViewController in Interface Builder file. The original name of the class it's trying to find is…
vimfluencer
  • 3,106
  • 3
  • 17
  • 25
0
votes
2 answers

Undefined symbols for architecture arm64 using MPMoviePlayerPlaybackDidFinishNotification with Xcode Beta 6

Since moving to Xcode 6 Beta 6 attempting to use MPMoviePlayerPlaybackDidFinishNotification in Swift code results in a linker error: Undefined symbols for architecture arm64: "__TFSs26_forceBridgeFromObjectiveCU__FTPSs9AnyObject_MQ__Q_", Here's…
Gruntcakes
  • 37,738
  • 44
  • 184
  • 378
0
votes
0 answers

Simulators missing in Xcode6 beta6

I'm having weird problem in XCode6 beta6. In preferences, downloads there is only one simulator (iOS8) showing as downloaded. No other simulators available. In addition trying to execute my project on simulator causes this same error mentioned in…
A_R
  • 11
0
votes
0 answers

Can't get SequenceType to work in Swift Beta 6

In beta 5 this code works perfectly, but it doesn't compile in Beta 6. Any ideas why? struct GenericGenerator: GeneratorType { var items: [T] mutating func next() -> T? { return items.isEmpty ? .None : items.removeAtIndex(0) …
Konrad77
  • 2,515
  • 1
  • 19
  • 36
-1
votes
1 answer

Error with Swift Code: String.Type does not have a member named 'stringWithContentOfURL'

I have some code that worked properly before the latest update, After updating to the latest version of Xcode I am getting this error String.Type does not have a member named 'stringWithContentOfURL' The code is below. func…
Eric
  • 13
  • 2
-1
votes
1 answer

Cannot assign to 'xxx' in 'self'

I got this compiler error: Cannot assign to 'sci' in 'self' class LCCVC: UICollectionViewCell { override func touchesEnded(touches: NSSet!, withEvent event: UIEvent!) { super.touchesEnded(touches, withEvent: event) sci = nil …
János
  • 32,867
  • 38
  • 193
  • 353
-2
votes
1 answer

After updating `Xcode 6` from `beta4` to `beta6`, my App crashes on button click action

I'm writing iOS swift project, today i updated Xcode 6 from beta4 to beta6. It compiles well, but when i press button, it prints "lol" in console and crashes. There is my code: @IBOutlet var emailField : UITextField! @IBAction func signInPressed ()…
lenden
  • 800
  • 2
  • 14
  • 38
1 2 3 4
5