Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why do I get Source Kit Service terminated error? [duplicate]

Tags:

swift

ios8

With second line something wrong, what?

let modelURL = NSBundle.mainBundle().URLForResource("xxx", withExtension: "momd");
let managedObjectModel = NSManagedObjectModel.init(contentsOfURL: modelURL)

enter image description here

like image 370
János Avatar asked Mar 20 '23 03:03

János


1 Answers

In my case I had imported missing files in bridged header. After I deleted it the error notification gone.

like image 133
Shmidt Avatar answered Apr 01 '23 16:04

Shmidt