I had this problem (using Swift), I spent the floor crawling through my git transactions to find where the problem started.

I used the Facebook Tweaks library for me, but I (unnecessarily) imported it from my project-bridging-header.h .
As soon as I got rid of it, I got the debugging back.
for example, in my heading, I had:
#ifndef PROJECT_Bridging_Header_h #define PROJECT_Bridging_Header_h // Facebook Tweaks #import "FBTweak.h" #import "FBTweakStore.h" #import "FBTweakCategory.h" #import "FBTweakCollection.h" #import "FBTweakViewController.h" #import "FBTweakShakeWindow.h" #endif
I deleted all the imports and simply imported it as usual in my AppDelegate import Tweaks .
eg:
#ifndef PROJECT_Bridging_Header_h #define PROJECT_Bridging_Header_h
and in my AppDelegate.swift
import Tweaks
This fixed all my debugging problems, everything worked as expected, and I can also use Facebook settings.
Note. . I do not think that this is a problem with the Facebook settings, you may have a different library causing the same problem. The idea is to remove things from your bridging-header one by one and see if you can narrow down the problem.
I think I read somewhere that if the library causes a lot of problems behind the scenes, this may stop your debugger from working.
If this does not help, try scanning through git commits and see at what stage debugging is stopped.
other related issues on SO:
Xcode non-value debugging
Xcode Debugger Does Not Display Variable Information After Installing CocoaPods Podcast
If you have similar problems, this will help! π