Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode error with Cocoapod: "The document could not be saved. The file doesn’t exist"

I've added the SPGooglePlacesAutocomplete cocoapod to my project -- and I'm getting a really weird issue. When I try to run my project, Xcode says there's an error in one of the Pod's headers:

SPGooglePlacesAutocompleteQuery.h:65:23: Unknown type name 'CGFloat'

Attempting to adjust anything in that file - such as importing UIKit - results in an error: "The document SPGooglePlacesAutocompleteQuery.h could not be saved. The file doesn’t exist"

What could be making Xcode thing this file is non-existent?

like image 223
H K Avatar asked Feb 11 '15 01:02

H K


4 Answers

Delete derived data. Force quit Xcode. Open Xcode Done

like image 183
Godfather Avatar answered Sep 26 '22 16:09

Godfather


For what it's worth, in my case the error came up when I was trying to edit a file pointed to by the warning/error pane in Xcode.

Not sure if that's cocoa pod related but I happen to be using pods also.

Basically you get an error, click on it and try to modify the file to fix the error and sometimes, not sure how, Xcode produces this error.

Since Xcode is stuck trying to save the changes to the file, you have to undo any changes you're made to the file in the error browser. Then editing the file by clicking on it in the regular browser instead of the warning/error pane will let you modify the file and save it.

I'm running Xcode 6.1.1 and Cocoapods 0.36.0.rc.1 and this happens when trying to modify a file from a pod added as a development pod (i.e. from a local directory).

like image 35
Damien Sirkis Avatar answered Sep 26 '22 16:09

Damien Sirkis


I was facing this problem while I was developing objective-c pod and one of the file(say xx.h &.m) in Classes folder was giving this error prompt. I did following approach:

  1. I copied xx(.h&.m) some where else (say Desktop)
  2. Delete xx(.h&.m) completely from classes folder .
  3. Force quit Xcode
  4. Reopen the project
  5. Drag the file xx(.h&.m) . Select 'copy item if needed' and 'target'.

problem solved!

like image 30
PANKAJ VERMA Avatar answered Sep 23 '22 16:09

PANKAJ VERMA


I'm running Xcode 7.3 and CocoaPods 1.0.0. and this happens when trying to modify a file from a pod added as a development pod (i.e. from a local directory).

I just pod update again, when pod finished, Xcode will show an alert "The document has previously unsaved changes.", then click "Re-Save". that fix my issue.

like image 44
ChenYilong Avatar answered Sep 23 '22 16:09

ChenYilong