Reputation: 133
I am making a mini tweet and working with team members using RxSwift and MVVM. But when I try to open a new file, it doesn't open. Restarting the computer and restarting the app is the same.
I'm working on the same branch as a team member, is that a problem? Why won't it open
NetworkingAPI and ViewModelType is new created file but The file color is weird
Upvotes: 2
Views: 42247
Reputation: 13290
There are lots of reasons why that specific file went missing.
You might've dragged that file from somewhere into your Xcode project and you thought that it was copied properly onto your project folder and deleted it from the original source folder.
Merge issues.
Similar to #2, another team member of your project pushed the file in a wrongful way.
There are of course also ways to recover it.
I think the #3 should suffice.
Upvotes: 2
Reputation: 318
You have the reference in Xcode but the files are missing.
This happened when merging and you had .xcodeproj conflict
then someone solved it in the wrong way. Check this as reference: https://stackoverflow.com/a/12907864/3933094
Upvotes: 0